From 1a558ef7538a19545e5934dfc99edf86ec436892 Mon Sep 17 00:00:00 2001 From: Dylan Conway <35280289+dylan-conway@users.noreply.github.com> Date: Wed, 26 Jul 2023 16:31:08 -0700 Subject: fix decorator and declare (#3828) * return the prop if there are decorators * test and comment --- src/js_ast.zig | 1 + src/js_parser.zig | 11 ++++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/js_ast.zig b/src/js_ast.zig index b5f47474a..358fe3197 100644 --- a/src/js_ast.zig +++ b/src/js_ast.zig @@ -840,6 +840,7 @@ pub const G = struct { get, set, spread, + declare, class_static_block, pub fn jsonStringify(self: @This(), opts: anytype, o: anytype) !void { diff --git a/src/js_parser.zig b/src/js_parser.zig index 6390dfdba..076815e54 100644 --- a/src/js_parser.zig +++ b/src/js_parser.zig @@ -12062,7 +12062,14 @@ fn NewParser_( // https://github.com/oven-sh/bun/issues/1907 if (opts.is_class and is_typescript_enabled and strings.eqlComptime(raw, "declare")) { const scope_index = p.scopes_in_order.items.len; - _ = try p.parseProperty(kind, opts, null); + if (try p.parseProperty(kind, opts, null)) |_prop| { + var prop = _prop; + if (prop.kind == .normal and prop.value == null and opts.ts_decorators.len > 0) { + prop.kind = .declare; + return prop; + } + } + p.discardScopesUpTo(scope_index); return null; } @@ -19512,6 +19519,8 @@ fn NewParser_( } } + // TODO: prop.kind == .declare and prop.value == null + if (prop.ts_decorators.len > 0) { const loc = prop.key.?.loc; const descriptor_key = switch (prop.key.?.data) { -- cgit v1.2.3