diff options
Diffstat (limited to 'src/js_ast.zig')
-rw-r--r-- | src/js_ast.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_ast.zig b/src/js_ast.zig index ee6e35729..bd2655289 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -318,7 +318,7 @@ pub const G = struct { pub const Comment = struct { loc: logger.Loc, text: string }; pub const Property = struct { - ts_decorators: ExprNodeList = &([_]Expr{}), + ts_decorators: ExprNodeList = &([_]ExprNodeIndex{}), // Key is optional for spread key: ?ExprNodeIndex = null, |