We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f9eef commit 09bc1a8Copy full SHA for 09bc1a8
apps/oxlint/src-js/generated/deserialize.js
@@ -48,7 +48,13 @@ function deserializeProgram(pos) {
48
body: null,
49
sourceType: deserializeModuleKind(pos + 125),
50
hashbang: null,
51
- comments: deserializeVecComment(pos + 24),
+ ...{
52
+ get comments() {
53
+ let c = deserializeVecComment(pos + 24);
54
+ Object.defineProperty(this, 'comments', { value: c });
55
+ return c;
56
+ },
57
58
start: 0,
59
end,
60
range: [0, end],
0 commit comments