aboutsummaryrefslogtreecommitdiff
path: root/src/js_ast.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/js_ast.zig')
-rw-r--r--src/js_ast.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig
index 46cf19922..1f0f542b4 100644
--- a/src/js_ast.zig
+++ b/src/js_ast.zig
@@ -882,7 +882,8 @@ pub const E = struct {
// because esbuild is not Webpack. But we do preserve them since doing so is
// harmless, easy to maintain, and useful to people. See the Webpack docs for
// more info: https://webpack.js.org/api/module-methods/#magic-comments.
- leading_interior_comments: []G.Comment,
+ // TODO:
+ leading_interior_comments: []G.Comment = &([_]G.Comment{}),
};
};