diff options
author | 2021-06-04 19:30:26 -0700 | |
---|---|---|
committer | 2021-06-04 19:30:26 -0700 | |
commit | 913891905f6d21bd7e044b034311fbd6cd204c00 (patch) | |
tree | ce0a7243f662940d5c463a94f278b6cd125d590f /src/js_parser/js_parser.zig | |
parent | 9dc7f258259e95fcdb1d5d7d3db0a41992efa79e (diff) | |
download | bun-913891905f6d21bd7e044b034311fbd6cd204c00.tar.gz bun-913891905f6d21bd7e044b034311fbd6cd204c00.tar.zst bun-913891905f6d21bd7e044b034311fbd6cd204c00.zip |
Generate parser versions at compile time
Former-commit-id: 38fe54261ddd7bc7e59958bed2c8f5bb57c2392c
Diffstat (limited to 'src/js_parser/js_parser.zig')
-rw-r--r-- | src/js_parser/js_parser.zig | 19357 |
1 files changed, 9690 insertions, 9667 deletions
diff --git a/src/js_parser/js_parser.zig b/src/js_parser/js_parser.zig index e69c55ea3..2d3989b12 100644 --- a/src/js_parser/js_parser.zig +++ b/src/js_parser/js_parser.zig @@ -42,7 +42,7 @@ pub const ImportScanner = struct { stmts: []Stmt = &([_]Stmt{}), kept_import_equals: bool = false, removed_import_equals: bool = false, - pub fn scan(p: *P, stmts: []Stmt) !ImportScanner { + pub fn scan(p: anytype, stmts: []Stmt) !ImportScanner { var scanner = ImportScanner{}; var stmts_end: usize = 0; @@ -490,7 +490,7 @@ pub const SideEffects = enum(u2) { // The reason for doing this is to remove dead imports wherever possible // We want to prioritize build & runtime performance // Sometimes, at the cost of making the source a little harder to read. - pub fn simplifyBoolean(p: *P, expr: Expr) Expr { + pub fn simplifyBoolean(p: anytype, expr: Expr) Expr { switch (expr.data) { .e_unary => |e| { if (e.op == .un_not) { @@ -568,7 +568,7 @@ pub const SideEffects = enum(u2) { } } - pub fn simpifyUnusedExpr(p: *P, expr: Expr) ?Expr { + pub fn simpifyUnusedExpr(p: anytype, expr: Expr) ?Expr { switch (expr.data) { .e_null, .e_undefined, .e_missing, .e_boolean, .e_number, .e_big_int, .e_string, .e_this, .e_reg_exp, .e_function, .e_arrow, .e_import_meta => { return null; @@ -723,7 +723,7 @@ pub const SideEffects = enum(u2) { // Returns "equal, ok". If "ok" is false, then nothing is known about the two // values. If "ok" is true, the equality or inequality of the two values is // stored in "equal". - pub fn eql(left: Expr.Data, right: Expr.Data, p: *P) Equality { + pub fn eql(left: Expr.Data, right: Expr.Data, p: anytype) Equality { var equality = Equality{}; switch (left) { .e_null => { @@ -1462,15 +1462,12 @@ pub const Parser = struct { source: *const logger.Source, define: *Define, allocator: *std.mem.Allocator, - p: ?*P, pub const Options = struct { jsx: options.JSX.Pragma, ts: bool = false, ascii_only: bool = true, keep_names: bool = true, - mangle_syntax: bool = false, - mange_identifiers: bool = false, omit_runtime_for_tests: bool = false, ignore_dce_annotations: bool = true, preserve_unused_imports_ts: bool = false, @@ -1492,142 +1489,214 @@ pub const Parser = struct { }; pub fn parse(self: *Parser) !js_ast.Result { - if (self.p == null) { - self.p = try P.init(self.allocator, self.log, self.source, self.define, self.lexer, self.options); + if (self.options.ts and self.options.jsx.parse) { + return try self._parse(TSXParser); + } else if (self.options.ts) { + return try self._parse(TypeScriptParser); + } else if (self.options.jsx.parse) { + return try self._parse(JSXParser); + } else { + return try self._parse(JavaScriptParser); } + } + + fn _parse(self: *Parser, comptime ParserType: type) !js_ast.Result { + var p = try ParserType.init(self.allocator, self.log, self.source, self.define, self.lexer, self.options); var result: js_ast.Result = undefined; - if (self.p) |p| { + // Consume a leading hashbang comment + var hashbang: string = ""; + if (p.lexer.token == .t_hashbang) { + hashbang = p.lexer.identifier; + try p.lexer.next(); + } - // Consume a leading hashbang comment - var hashbang: string = ""; - if (p.lexer.token == .t_hashbang) { - hashbang = p.lexer.identifier; - try p.lexer.next(); - } + // Parse the file in the first pass, but do not bind symbols + var opts = ParseStatementOptions{ .is_module_scope = true }; + debugl("<p.parseStmtsUpTo>"); + const stmts = try p.parseStmtsUpTo(js_lexer.T.t_end_of_file, &opts); + debugl("</p.parseStmtsUpTo>"); + try p.prepareForVisitPass(); + + // ESM is always strict mode. I don't think we need this. + // // Strip off a leading "use strict" directive when not bundling + // var directive = ""; + + // Insert a variable for "import.meta" at the top of the file if it was used. + // We don't need to worry about "use strict" directives because this only + // happens when bundling, in which case we are flatting the module scopes of + // all modules together anyway so such directives are meaningless. + // if (!p.import_meta_ref.isSourceIndexNull()) { + // // heap so it lives beyond this function call + // var decls = try p.allocator.alloc(G.Decl, 1); + // decls[0] = Decl{ .binding = p.b(B.Identifier{ + // .ref = p.import_meta_ref, + // }, logger.Loc.Empty), .value = p.e(E.Object{}, logger.Loc.Empty) }; + // var importMetaStatement = p.s(S.Local{ + // .kind = .k_const, + // .decls = decls, + // }, logger.Loc.Empty); + // } - // Parse the file in the first pass, but do not bind symbols - var opts = ParseStatementOptions{ .is_module_scope = true }; - debugl("<p.parseStmtsUpTo>"); - const stmts = try p.parseStmtsUpTo(js_lexer.T.t_end_of_file, &opts); - debugl("</p.parseStmtsUpTo>"); - try p.prepareForVisitPass(); - - // ESM is always strict mode. I don't think we need this. - // // Strip off a leading "use strict" directive when not bundling - // var directive = ""; - - // Insert a variable for "import.meta" at the top of the file if it was used. - // We don't need to worry about "use strict" directives because this only - // happens when bundling, in which case we are flatting the module scopes of - // all modules together anyway so such directives are meaningless. - // if (!p.import_meta_ref.isSourceIndexNull()) { - // // heap so it lives beyond this function call - // var decls = try p.allocator.alloc(G.Decl, 1); - // decls[0] = Decl{ .binding = p.b(B.Identifier{ - // .ref = p.import_meta_ref, - // }, logger.Loc.Empty), .value = p.e(E.Object{}, logger.Loc.Empty) }; - // var importMetaStatement = p.s(S.Local{ - // .kind = .k_const, - // .decls = decls, - // }, logger.Loc.Empty); - // } + debugl("<p.appendPart>"); + var before = List(js_ast.Part).init(p.allocator); + var after = List(js_ast.Part).init(p.allocator); + var parts = List(js_ast.Part).init(p.allocator); + try p.appendPart(&parts, stmts); - debugl("<p.appendPart>"); - var before = List(js_ast.Part).init(p.allocator); - var after = List(js_ast.Part).init(p.allocator); - var parts = List(js_ast.Part).init(p.allocator); - try p.appendPart(&parts, stmts); - - // Auto-import JSX - if (p.options.jsx.parse) { - const jsx_symbol: Symbol = p.symbols.items[p.jsx_runtime_ref.inner_index]; - const jsx_fragment_symbol: Symbol = p.symbols.items[p.jsx_fragment_ref.inner_index]; - const jsx_factory_symbol: Symbol = p.symbols.items[p.jsx_factory_ref.inner_index]; - const jsx_filename_symbol = p.symbols.items[p.jsx_filename_ref.inner_index]; - - // Currently, React (and most node_modules) ship a CJS version or a UMD version - // but we should assume that it'll pretty much always be CJS - // Given that, we can't directly call import {jsxDEV} from 'react'; - // Instead, we must call require("react").default.jsxDEV - // So a jsx_symbol usage means a jsx_factory_symbol usage - // This is kind of a broken way of doing it because it wouldn't work if it was more than one level deep - if (FeatureFlags.jsx_runtime_is_cjs) { - if (jsx_symbol.use_count_estimate > 0) { - p.recordUsage(p.jsx_automatic_ref); - } + // Auto-import JSX + if (p.options.jsx.parse) { + const jsx_symbol: Symbol = p.symbols.items[p.jsx_runtime_ref.inner_index]; + const jsx_fragment_symbol: Symbol = p.symbols.items[p.jsx_fragment_ref.inner_index]; + const jsx_factory_symbol: Symbol = p.symbols.items[p.jsx_factory_ref.inner_index]; + const jsx_filename_symbol = p.symbols.items[p.jsx_filename_ref.inner_index]; + + // Currently, React (and most node_modules) ship a CJS version or a UMD version + // but we should assume that it'll pretty much always be CJS + // Given that, we can't directly call import {jsxDEV} from 'react'; + // Instead, we must call require("react").default.jsxDEV + // So a jsx_symbol usage means a jsx_factory_symbol usage + // This is kind of a broken way of doing it because it wouldn't work if it was more than one level deep + if (FeatureFlags.jsx_runtime_is_cjs) { + if (jsx_symbol.use_count_estimate > 0) { + p.recordUsage(p.jsx_automatic_ref); + } + + if (jsx_fragment_symbol.use_count_estimate > 0) { + p.recordUsage(p.jsx_classic_ref); + } + + if (jsx_factory_symbol.use_count_estimate > 0) { + p.recordUsage(p.jsx_classic_ref); + } + } + + const jsx_classic_symbol: Symbol = p.symbols.items[p.jsx_classic_ref.inner_index]; + const jsx_automatic_symbol: Symbol = p.symbols.items[p.jsx_automatic_ref.inner_index]; + + // JSX auto-imports + // The classic runtime is a different import than the main import + // There are cases where you can use both JSX runtimes in the same file. + // 1. If you use a spread operator like this: <div foo bar key="foo" {...props} baz /> + // 2. If you use a React.Fragment + // So we have to support both. + if (jsx_classic_symbol.use_count_estimate > 0 or jsx_automatic_symbol.use_count_estimate > 0) { + const classic_namespace_ref = p.jsx_classic_ref; + const automatic_namespace_ref = p.jsx_automatic_ref; + + const decls_count: u32 = + @intCast(u32, @boolToInt(jsx_symbol.use_count_estimate > 0)) + + @intCast(u32, @boolToInt(jsx_factory_symbol.use_count_estimate > 0)) + + @intCast(u32, @boolToInt(jsx_fragment_symbol.use_count_estimate > 0)) + + @intCast(u32, @boolToInt(jsx_filename_symbol.use_count_estimate > 0)); + + const imports_count = + @intCast(u32, @boolToInt(jsx_symbol.use_count_estimate > 0)) + @intCast(u32, std.math.max(jsx_factory_symbol.use_count_estimate, jsx_fragment_symbol.use_count_estimate)); + const stmts_count = imports_count + 1; + const symbols_count: u32 = imports_count + decls_count; + const loc = logger.Loc{ .start = 0 }; + + // Preallocate everything we'll need here + var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, symbols_count); + var decls = try p.allocator.alloc(G.Decl, decls_count); + var jsx_part_stmts = try p.allocator.alloc(Stmt, stmts_count); + // Use the same array for storing the require call target of potentially both JSX runtimes + var require_call_args_base = p.allocator.alloc(Expr, imports_count) catch unreachable; + var import_records = try p.allocator.alloc(u32, imports_count); + + var decl_i: usize = 0; + var declared_symbols_i: usize = 0; + var import_record_i: usize = 0; + var require_call_args_i: usize = 0; + var stmt_i: usize = 0; + + if (jsx_symbol.use_count_estimate > 0) { + require_call_args_base[require_call_args_i] = p.e(E.Identifier{ .ref = automatic_namespace_ref }, loc); + require_call_args_i += 1; + var require_call_args = require_call_args_base[0..require_call_args_i]; + var require_call = p.callRuntime(loc, "__require", require_call_args); + + declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_runtime_ref, .is_top_level = true }; + declared_symbols_i += 1; + declared_symbols[declared_symbols_i] = .{ .ref = automatic_namespace_ref, .is_top_level = true }; + declared_symbols_i += 1; + + decls[decl_i] = G.Decl{ + .binding = p.b( + B.Identifier{ + .ref = p.jsx_runtime_ref, + }, + loc, + ), + .value = p.e( + E.Dot{ + .target = require_call, + .name = p.options.jsx.jsx, + .name_loc = loc, + .can_be_removed_if_unused = true, + }, + loc, + ), + }; + decl_i += 1; - if (jsx_fragment_symbol.use_count_estimate > 0) { - p.recordUsage(p.jsx_classic_ref); + if (jsx_filename_symbol.use_count_estimate > 0) { + declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_filename_ref, .is_top_level = true }; + declared_symbols_i += 1; + decls[decl_i] = G.Decl{ + .binding = p.b( + B.Identifier{ + .ref = p.jsx_filename_ref, + }, + loc, + ), + .value = p.e(E.String{ .utf8 = p.source.path.pretty }, loc), + }; + decl_i += 1; } + const import_record_id = p.addImportRecord(.internal, loc, p.options.jsx.import_source); + jsx_part_stmts[stmt_i] = p.s(S.Import{ + .namespace_ref = automatic_namespace_ref, + .star_name_loc = loc, + .is_single_line = true, + .import_record_index = import_record_id, + }, loc); + stmt_i += 1; + p.named_imports.put( + automatic_namespace_ref, + js_ast.NamedImport{ + .alias = jsx_automatic_symbol.original_name, + .alias_is_star = true, + .alias_loc = loc, + .namespace_ref = automatic_namespace_ref, + .import_record_index = import_record_id, + }, + ) catch unreachable; + p.is_import_item.put(automatic_namespace_ref, true) catch unreachable; + import_records[import_record_i] = import_record_id; + import_record_i += 1; + } + + if (jsx_classic_symbol.use_count_estimate > 0) { + require_call_args_base[require_call_args_i] = p.e(E.Identifier{ .ref = classic_namespace_ref }, loc); + var require_call_args = require_call_args_base[require_call_args_i..]; + var require_call = p.callRuntime(loc, "__require", require_call_args); if (jsx_factory_symbol.use_count_estimate > 0) { - p.recordUsage(p.jsx_classic_ref); - } - } - - const jsx_classic_symbol: Symbol = p.symbols.items[p.jsx_classic_ref.inner_index]; - const jsx_automatic_symbol: Symbol = p.symbols.items[p.jsx_automatic_ref.inner_index]; - - // JSX auto-imports - // The classic runtime is a different import than the main import - // There are cases where you can use both JSX runtimes in the same file. - // 1. If you use a spread operator like this: <div foo bar key="foo" {...props} baz /> - // 2. If you use a React.Fragment - // So we have to support both. - if (jsx_classic_symbol.use_count_estimate > 0 or jsx_automatic_symbol.use_count_estimate > 0) { - const classic_namespace_ref = p.jsx_classic_ref; - const automatic_namespace_ref = p.jsx_automatic_ref; - - const decls_count: u32 = - @intCast(u32, @boolToInt(jsx_symbol.use_count_estimate > 0)) + - @intCast(u32, @boolToInt(jsx_factory_symbol.use_count_estimate > 0)) + - @intCast(u32, @boolToInt(jsx_fragment_symbol.use_count_estimate > 0)) + - @intCast(u32, @boolToInt(jsx_filename_symbol.use_count_estimate > 0)); - - const imports_count = - @intCast(u32, @boolToInt(jsx_symbol.use_count_estimate > 0)) + @intCast(u32, std.math.max(jsx_factory_symbol.use_count_estimate, jsx_fragment_symbol.use_count_estimate)); - const stmts_count = imports_count + 1; - const symbols_count: u32 = imports_count + decls_count; - const loc = logger.Loc{ .start = 0 }; - - // Preallocate everything we'll need here - var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, symbols_count); - var decls = try p.allocator.alloc(G.Decl, decls_count); - var jsx_part_stmts = try p.allocator.alloc(Stmt, stmts_count); - // Use the same array for storing the require call target of potentially both JSX runtimes - var require_call_args_base = p.allocator.alloc(Expr, imports_count) catch unreachable; - var import_records = try p.allocator.alloc(u32, imports_count); - - var decl_i: usize = 0; - var declared_symbols_i: usize = 0; - var import_record_i: usize = 0; - var require_call_args_i: usize = 0; - var stmt_i: usize = 0; - - if (jsx_symbol.use_count_estimate > 0) { - require_call_args_base[require_call_args_i] = p.e(E.Identifier{ .ref = automatic_namespace_ref }, loc); - require_call_args_i += 1; - var require_call_args = require_call_args_base[0..require_call_args_i]; - var require_call = p.callRuntime(loc, "__require", require_call_args); - - declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_runtime_ref, .is_top_level = true }; + declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_factory_ref, .is_top_level = true }; declared_symbols_i += 1; - declared_symbols[declared_symbols_i] = .{ .ref = automatic_namespace_ref, .is_top_level = true }; - declared_symbols_i += 1; - decls[decl_i] = G.Decl{ .binding = p.b( B.Identifier{ - .ref = p.jsx_runtime_ref, + .ref = p.jsx_factory_ref, }, loc, ), .value = p.e( E.Dot{ .target = require_call, - .name = p.options.jsx.jsx, + .name = p.options.jsx.factory[p.options.jsx.factory.len - 1], .name_loc = loc, .can_be_removed_if_unused = true, }, @@ -1635,214 +1704,146 @@ pub const Parser = struct { ), }; decl_i += 1; + } - if (jsx_filename_symbol.use_count_estimate > 0) { - declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_filename_ref, .is_top_level = true }; - declared_symbols_i += 1; - decls[decl_i] = G.Decl{ - .binding = p.b( - B.Identifier{ - .ref = p.jsx_filename_ref, - }, - loc, - ), - .value = p.e(E.String{ .utf8 = p.source.path.pretty }, loc), - }; - decl_i += 1; - } - - const import_record_id = p.addImportRecord(.internal, loc, p.options.jsx.import_source); - jsx_part_stmts[stmt_i] = p.s(S.Import{ - .namespace_ref = automatic_namespace_ref, - .star_name_loc = loc, - .is_single_line = true, - .import_record_index = import_record_id, - }, loc); - stmt_i += 1; - p.named_imports.put( - automatic_namespace_ref, - js_ast.NamedImport{ - .alias = jsx_automatic_symbol.original_name, - .alias_is_star = true, - .alias_loc = loc, - .namespace_ref = automatic_namespace_ref, - .import_record_index = import_record_id, - }, - ) catch unreachable; - p.is_import_item.put(automatic_namespace_ref, true) catch unreachable; - import_records[import_record_i] = import_record_id; - import_record_i += 1; - } - - if (jsx_classic_symbol.use_count_estimate > 0) { - require_call_args_base[require_call_args_i] = p.e(E.Identifier{ .ref = classic_namespace_ref }, loc); - var require_call_args = require_call_args_base[require_call_args_i..]; - var require_call = p.callRuntime(loc, "__require", require_call_args); - if (jsx_factory_symbol.use_count_estimate > 0) { - declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_factory_ref, .is_top_level = true }; - declared_symbols_i += 1; - decls[decl_i] = G.Decl{ - .binding = p.b( - B.Identifier{ - .ref = p.jsx_factory_ref, - }, - loc, - ), - .value = p.e( - E.Dot{ - .target = require_call, - .name = p.options.jsx.factory[p.options.jsx.factory.len - 1], - .name_loc = loc, - .can_be_removed_if_unused = true, - }, - loc, - ), - }; - decl_i += 1; - } - - if (jsx_fragment_symbol.use_count_estimate > 0) { - declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_fragment_ref, .is_top_level = true }; - declared_symbols_i += 1; - decls[decl_i] = G.Decl{ - .binding = p.b( - B.Identifier{ - .ref = p.jsx_fragment_ref, - }, - loc, - ), - .value = p.e( - E.Dot{ - .target = require_call, - .name = p.options.jsx.fragment[p.options.jsx.fragment.len - 1], - .name_loc = loc, - .can_be_removed_if_unused = true, - }, - loc, - ), - }; - decl_i += 1; - } - const import_record_id = p.addImportRecord(.internal, loc, p.options.jsx.import_source); - jsx_part_stmts[stmt_i] = p.s(S.Import{ - .namespace_ref = classic_namespace_ref, - .star_name_loc = loc, - .is_single_line = true, - .import_record_index = import_record_id, - }, loc); - stmt_i += 1; - p.named_imports.put( - classic_namespace_ref, - js_ast.NamedImport{ - .alias = jsx_classic_symbol.original_name, - .alias_is_star = true, - .alias_loc = loc, - .namespace_ref = classic_namespace_ref, - .import_record_index = import_record_id, - }, - ) catch unreachable; - p.is_import_item.put(classic_namespace_ref, true) catch unreachable; - import_records[import_record_i] = import_record_id; - declared_symbols[declared_symbols_i] = .{ .ref = classic_namespace_ref, .is_top_level = true }; + if (jsx_fragment_symbol.use_count_estimate > 0) { + declared_symbols[declared_symbols_i] = .{ .ref = p.jsx_fragment_ref, .is_top_level = true }; declared_symbols_i += 1; + decls[decl_i] = G.Decl{ + .binding = p.b( + B.Identifier{ + .ref = p.jsx_fragment_ref, + }, + loc, + ), + .value = p.e( + E.Dot{ + .target = require_call, + .name = p.options.jsx.fragment[p.options.jsx.fragment.len - 1], + .name_loc = loc, + .can_be_removed_if_unused = true, + }, + loc, + ), + }; + decl_i += 1; } - - jsx_part_stmts[stmt_i] = p.s(S.Local{ .kind = .k_var, .decls = decls }, loc); - - before.append(js_ast.Part{ - .stmts = jsx_part_stmts, - .declared_symbols = declared_symbols, - .import_record_indices = import_records, - .symbol_uses = SymbolUseMap.init(p.allocator), - }) catch unreachable; + const import_record_id = p.addImportRecord(.internal, loc, p.options.jsx.import_source); + jsx_part_stmts[stmt_i] = p.s(S.Import{ + .namespace_ref = classic_namespace_ref, + .star_name_loc = loc, + .is_single_line = true, + .import_record_index = import_record_id, + }, loc); + stmt_i += 1; + p.named_imports.put( + classic_namespace_ref, + js_ast.NamedImport{ + .alias = jsx_classic_symbol.original_name, + .alias_is_star = true, + .alias_loc = loc, + .namespace_ref = classic_namespace_ref, + .import_record_index = import_record_id, + }, + ) catch unreachable; + p.is_import_item.put(classic_namespace_ref, true) catch unreachable; + import_records[import_record_i] = import_record_id; + declared_symbols[declared_symbols_i] = .{ .ref = classic_namespace_ref, .is_top_level = true }; + declared_symbols_i += 1; } - } - - // Analyze cross-part dependencies for tree shaking and code splitting - var exports_kind = js_ast.ExportsKind.none; - const uses_exports_ref = p.symbols.items[p.exports_ref.inner_index].use_count_estimate > 0; - const uses_module_ref = p.symbols.items[p.module_ref.inner_index].use_count_estimate > 0; - const uses_require_ref = p.symbols.items[p.require_ref.inner_index].use_count_estimate > 0; - - var to_module_expr: ?Expr = null; - - if (p.es6_export_keyword.len > 0 or p.top_level_await_keyword.len > 0) { - exports_kind = .esm; - } else if (uses_exports_ref or uses_module_ref or p.has_top_level_return) { - exports_kind = .cjs; - var args = p.allocator.alloc(Expr, 2) catch unreachable; - to_module_expr = p.callRuntime(logger.Loc.Empty, "__commonJS", args); - } else { - exports_kind = .esm; - } - - var runtime_imports_iter = p.runtime_imports.iter(); - while (runtime_imports_iter.next()) |entry| { - const imports = [_]u16{entry.key}; - p.generateImportStmt(RuntimeImports.Name, &imports, &before, p.runtime_imports, null, "import_") catch unreachable; - } - if (p.cjs_import_stmts.items.len > 0) { - var import_records = try p.allocator.alloc(u32, p.cjs_import_stmts.items.len); - var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, p.cjs_import_stmts.items.len); - - for (p.cjs_import_stmts.items) |entry, i| { - const import_statement: *S.Import = entry.data.s_import; - import_records[i] = import_statement.import_record_index; - declared_symbols[i] = .{ - .ref = import_statement.namespace_ref, - .is_top_level = true, - }; - } + jsx_part_stmts[stmt_i] = p.s(S.Local{ .kind = .k_var, .decls = decls }, loc); before.append(js_ast.Part{ - .stmts = p.cjs_import_stmts.items, + .stmts = jsx_part_stmts, .declared_symbols = declared_symbols, .import_record_indices = import_records, .symbol_uses = SymbolUseMap.init(p.allocator), }) catch unreachable; } + } - var parts_slice: []js_ast.Part = &([_]js_ast.Part{}); + // Analyze cross-part dependencies for tree shaking and code splitting + var exports_kind = js_ast.ExportsKind.none; + const uses_exports_ref = p.symbols.items[p.exports_ref.inner_index].use_count_estimate > 0; + const uses_module_ref = p.symbols.items[p.module_ref.inner_index].use_count_estimate > 0; + const uses_require_ref = p.symbols.items[p.require_ref.inner_index].use_count_estimate > 0; - if (before.items.len > 0 or after.items.len > 0) { - const before_len = before.items.len; - const after_len = after.items.len; - const parts_len = parts.items.len; - var _parts = try p.allocator.alloc( - js_ast.Part, - before_len + - after_len + - parts_len, - ); - if (before_len > 0) { - std.mem.copy(js_ast.Part, _parts, before.toOwnedSlice()); - } - if (parts_len > 0) { - std.mem.copy(js_ast.Part, _parts[before_len .. before_len + parts_len], parts.toOwnedSlice()); - } + var to_module_expr: ?Expr = null; - if (after_len > 0) { - std.mem.copy(js_ast.Part, _parts[before_len + parts_len .. _parts.len], after.toOwnedSlice()); - } - parts_slice = _parts; - } else { - after.deinit(); - before.deinit(); - parts_slice = parts.toOwnedSlice(); + if (p.es6_export_keyword.len > 0 or p.top_level_await_keyword.len > 0) { + exports_kind = .esm; + } else if (uses_exports_ref or uses_module_ref or p.has_top_level_return) { + exports_kind = .cjs; + var args = p.allocator.alloc(Expr, 2) catch unreachable; + to_module_expr = p.callRuntime(logger.Loc.Empty, "__commonJS", args); + } else { + exports_kind = .esm; + } + + var runtime_imports_iter = p.runtime_imports.iter(); + while (runtime_imports_iter.next()) |entry| { + const imports = [_]u16{entry.key}; + p.generateImportStmt(RuntimeImports.Name, &imports, &before, p.runtime_imports, null, "import_") catch unreachable; + } + + if (p.cjs_import_stmts.items.len > 0) { + var import_records = try p.allocator.alloc(u32, p.cjs_import_stmts.items.len); + var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, p.cjs_import_stmts.items.len); + + for (p.cjs_import_stmts.items) |entry, i| { + const import_statement: *S.Import = entry.data.s_import; + import_records[i] = import_statement.import_record_index; + declared_symbols[i] = .{ + .ref = import_statement.namespace_ref, + .is_top_level = true, + }; } - debugl("</p.appendPart>"); - // Pop the module scope to apply the "ContainsDirectEval" rules - // p.popScope(); - debugl("<result.Ast>"); - result.ast = try p.toAST(parts_slice, exports_kind, to_module_expr); - result.ok = true; - debugl("</result.Ast>"); + before.append(js_ast.Part{ + .stmts = p.cjs_import_stmts.items, + .declared_symbols = declared_symbols, + .import_record_indices = import_records, + .symbol_uses = SymbolUseMap.init(p.allocator), + }) catch unreachable; + } + + var parts_slice: []js_ast.Part = &([_]js_ast.Part{}); + + if (before.items.len > 0 or after.items.len > 0) { + const before_len = before.items.len; + const after_len = after.items.len; + const parts_len = parts.items.len; + var _parts = try p.allocator.alloc( + js_ast.Part, + before_len + + after_len + + parts_len, + ); + if (before_len > 0) { + std.mem.copy(js_ast.Part, _parts, before.toOwnedSlice()); + } + if (parts_len > 0) { + std.mem.copy(js_ast.Part, _parts[before_len .. before_len + parts_len], parts.toOwnedSlice()); + } - // result = p.toAST(parts); - // result.source_map_comment = p.lexer.source_mapping_url; + if (after_len > 0) { + std.mem.copy(js_ast.Part, _parts[before_len + parts_len .. _parts.len], after.toOwnedSlice()); + } + parts_slice = _parts; + } else { + after.deinit(); + before.deinit(); + parts_slice = parts.toOwnedSlice(); } + debugl("</p.appendPart>"); + + // Pop the module scope to apply the "ContainsDirectEval" rules + // p.popScope(); + debugl("<result.Ast>"); + result.ast = try p.toAST(parts_slice, exports_kind, to_module_expr); + result.ok = true; + debugl("</result.Ast>"); return result; } @@ -1856,7 +1857,6 @@ pub const Parser = struct { .define = define, .source = source, .log = log, - .p = null, }; } }; @@ -1956,5493 +1956,5587 @@ var falseExprValueData = E.Boolean{ .value = false }; var nullValueExpr = Expr.Data{ .e_null = nullExprValueData }; var falseValueExpr = Expr.Data{ .e_boolean = E.Boolean{ .value = false } }; -// P is for Parser! -// public only because of Binding.ToExpr -pub const P = struct { - allocator: *std.mem.Allocator, - options: Parser.Options, - log: *logger.Log, - define: *Define, - source: *const logger.Source, - lexer: js_lexer.Lexer, - allow_in: bool = false, - allow_private_identifiers: bool = false, - has_top_level_return: bool = false, - latest_return_had_semicolon: bool = false, - has_import_meta: bool = false, - has_es_module_syntax: bool = false, - top_level_await_keyword: logger.Range = logger.Range.None, - fn_or_arrow_data_parse: FnOrArrowDataParse = FnOrArrowDataParse{}, - fn_or_arrow_data_visit: FnOrArrowDataVisit = FnOrArrowDataVisit{}, - fn_only_data_visit: FnOnlyDataVisit = FnOnlyDataVisit{}, - allocated_names: List(string), - latest_arrow_arg_loc: logger.Loc = logger.Loc.Empty, - forbid_suffix_after_as_loc: logger.Loc = logger.Loc.Empty, - current_scope: *js_ast.Scope = undefined, - scopes_for_current_part: List(*js_ast.Scope), - symbols: List(js_ast.Symbol), - ts_use_counts: List(u32), - exports_ref: js_ast.Ref = js_ast.Ref.None, - require_ref: js_ast.Ref = js_ast.Ref.None, - module_ref: js_ast.Ref = js_ast.Ref.None, - import_meta_ref: js_ast.Ref = js_ast.Ref.None, - promise_ref: ?js_ast.Ref = null, - scopes_in_order_visitor_index: usize = 0, - has_classic_runtime_warned: bool = false, - - cjs_import_stmts: std.ArrayList(Stmt), - - injected_define_symbols: List(Ref), - symbol_uses: SymbolUseMap, - declared_symbols: List(js_ast.DeclaredSymbol), - runtime_imports: RuntimeImports = RuntimeImports{}, - // duplicate_case_checker: void, - // non_bmp_identifiers: StringBoolMap, - // legacy_octal_literals: void, - // legacy_octal_literals: map[js_ast.E]logger.Range, - - // For lowering private methods - // weak_map_ref: ?js_ast.Ref, - // weak_set_ref: ?js_ast.Ref, - // private_getters: RefRefMap, - // private_setters: RefRefMap, - - // These are for TypeScript - should_fold_numeric_constants: bool = false, - emitted_namespace_vars: RefBoolMap, - is_exported_inside_namespace: RefRefMap, - known_enum_values: Map(js_ast.Ref, StringHashMap(f64)), - local_type_names: StringBoolMap, - - // This is the reference to the generated function argument for the namespace, - // which is different than the reference to the namespace itself: - // - // namespace ns { - // } - // - // The code above is transformed into something like this: - // - // var ns1; - // (function(ns2) { - // })(ns1 or (ns1 = {})); - // - // This variable is "ns2" not "ns1". It is only used during the second - // "visit" pass. - enclosing_namespace_arg_ref: ?js_ast.Ref = null, - - jsx_filename_ref: js_ast.Ref = Ref.None, - jsx_runtime_ref: js_ast.Ref = Ref.None, - jsx_factory_ref: js_ast.Ref = Ref.None, - jsx_fragment_ref: js_ast.Ref = Ref.None, - jsx_automatic_ref: js_ast.Ref = Ref.None, - jsx_classic_ref: js_ast.Ref = Ref.None, - - jsx_source_list_ref: js_ast.Ref = Ref.None, - - // Imports (both ES6 and CommonJS) are tracked at the top level - import_records: List(ImportRecord), - import_records_for_current_part: List(u32), - export_star_import_records: List(u32), - - // These are for handling ES6 imports and exports - es6_import_keyword: logger.Range = logger.Range.None, - es6_export_keyword: logger.Range = logger.Range.None, - enclosing_class_keyword: logger.Range = logger.Range.None, - import_items_for_namespace: Map(js_ast.Ref, StringHashMap(js_ast.LocRef)), - is_import_item: RefBoolMap, - named_imports: js_ast.Ast.NamedImports, - named_exports: js_ast.Ast.NamedExports, - top_level_symbol_to_parts: Map(js_ast.Ref, List(u32)), - import_namespace_cc_map: Map(ImportNamespaceCallOrConstruct, bool), - - // The parser does two passes and we need to pass the scope tree information - // from the first pass to the second pass. That's done by tracking the calls - // to pushScopeForParsePass() and popScope() during the first pass in - // scopesInOrder. - // - // Then, when the second pass calls pushScopeForVisitPass() and popScope(), - // we consume entries from scopesInOrder and make sure they are in the same - // order. This way the second pass can efficiently use the same scope tree - // as the first pass without having to attach the scope tree to the AST. - // - // We need to split this into two passes because the pass that declares the - // symbols must be separate from the pass that binds identifiers to declared - // symbols to handle declaring a hoisted "var" symbol in a nested scope and - // binding a name to it in a parent or sibling scope. - scopes_in_order: ScopeOrderList, - - // These properties are for the visit pass, which runs after the parse pass. - // The visit pass binds identifiers to declared symbols, does constant - // folding, substitutes compile-time variable definitions, and lowers certain - // syntactic constructs as appropriate. - stmt_expr_value: Expr.Data, - call_target: Expr.Data, - delete_target: Expr.Data, - loop_body: Stmt.Data, - module_scope: *js_ast.Scope = undefined, - is_control_flow_dead: bool = false, - - // Inside a TypeScript namespace, an "export declare" statement can be used - // to cause a namespace to be emitted even though it has no other observable - // effect. This flag is used to implement this feature. - // - // Specifically, namespaces should be generated for all of the following - // namespaces below except for "f", which should not be generated: - // - // namespace a { export declare const a } - // namespace b { export declare let [[b]] } - // namespace c { export declare function c() } - // namespace d { export declare class d {} } - // namespace e { export declare enum e {} } - // namespace f { export declare namespace f {} } - // - // The TypeScript compiler compiles this into the following code (notice "f" - // is missing): - // - // var a; (function (a_1) {})(a or (a = {})); - // var b; (function (b_1) {})(b or (b = {})); - // var c; (function (c_1) {})(c or (c = {})); - // var d; (function (d_1) {})(d or (d = {})); - // var e; (function (e_1) {})(e or (e = {})); - // - // Note that this should not be implemented by declaring symbols for "export - // declare" statements because the TypeScript compiler doesn't generate any - // code for these statements, so these statements are actually references to - // global variables. There is one exception, which is that local variables - // *should* be declared as symbols because they are replaced with. This seems - // like very arbitrary behavior but it's what the TypeScript compiler does, - // so we try to match it. - // - // Specifically, in the following code below "a" and "b" should be declared - // and should be substituted with "ns.a" and "ns.b" but the other symbols - // shouldn't. References to the other symbols actually refer to global - // variables instead of to symbols that are exported from the namespace. - // This is the case as of TypeScript 4.3. I assume this is a TypeScript bug: - // - // namespace ns { - // export declare const a - // export declare let [[b]] - // export declare function c() - // export declare class d { } - // export declare enum e { } - // console.log(a, b, c, d, e) - // } - // - // The TypeScript compiler compiles this into the following code: - // - // var ns; - // (function (ns) { - // console.log(ns.a, ns.b, c, d, e); - // })(ns or (ns = {})); - // - // Relevant issue: https://github.com/evanw/esbuild/issues/1158 - has_non_local_export_declare_inside_namespace: bool = false, - - // This helps recognize the "await import()" pattern. When this is present, - // warnings about non-string import paths will be omitted inside try blocks. - await_target: ?js_ast.Expr.Data = null, - - to_expr_wrapper_namespace: Binding2ExprWrapper.Namespace, - to_expr_wrapper_hoisted: Binding2ExprWrapper.Hoisted, - - // This helps recognize the "import().catch()" pattern. We also try to avoid - // warning about this just like the "try { await import() }" pattern. - then_catch_chain: ThenCatchChain, - - // Temporary variables used for lowering - temp_refs_to_declare: List(TempRef), - temp_ref_count: i32 = 0, - - // When bundling, hoisted top-level local variables declared with "var" in - // nested scopes are moved up to be declared in the top-level scope instead. - // The old "var" statements are turned into regular assignments instead. This - // makes it easier to quickly scan the top-level statements for "var" locals - // with the guarantee that all will be found. - relocated_top_level_vars: List(js_ast.LocRef), - - // ArrowFunction is a special case in the grammar. Although it appears to be - // a PrimaryExpression, it's actually an AssignmentExpression. This means if - // a AssignmentExpression ends up producing an ArrowFunction then nothing can - // come after it other than the comma operator, since the comma operator is - // the only thing above AssignmentExpression under the Expression rule: - // - // AssignmentExpression: - // ArrowFunction - // ConditionalExpression - // LeftHandSideExpression = AssignmentExpression - // LeftHandSideExpression AssignmentOperator AssignmentExpression - // - // Expression: - // AssignmentExpression - // Expression , AssignmentExpression - // - after_arrow_body_loc: logger.Loc = logger.Loc.Empty, - import_transposer: ImportTransposer, - require_transposer: RequireTransposer, - require_resolve_transposer: RequireResolveTransposer, +pub fn NewParser(comptime is_typescript_enabled: bool, comptime is_jsx_enabled: bool) type { + // P is for Parser! + // public only because of Binding.ToExpr + return struct { + const P = @This(); + allocator: *std.mem.Allocator, + options: Parser.Options, + log: *logger.Log, + define: *Define, + source: *const logger.Source, + lexer: js_lexer.Lexer, + allow_in: bool = false, + allow_private_identifiers: bool = false, + has_top_level_return: bool = false, + latest_return_had_semicolon: bool = false, + has_import_meta: bool = false, + has_es_module_syntax: bool = false, + top_level_await_keyword: logger.Range = logger.Range.None, + fn_or_arrow_data_parse: FnOrArrowDataParse = FnOrArrowDataParse{}, + fn_or_arrow_data_visit: FnOrArrowDataVisit = FnOrArrowDataVisit{}, + fn_only_data_visit: FnOnlyDataVisit = FnOnlyDataVisit{}, + allocated_names: List(string), + latest_arrow_arg_loc: logger.Loc = logger.Loc.Empty, + forbid_suffix_after_as_loc: logger.Loc = logger.Loc.Empty, + current_scope: *js_ast.Scope = undefined, + scopes_for_current_part: List(*js_ast.Scope), + symbols: List(js_ast.Symbol), + ts_use_counts: List(u32), + exports_ref: js_ast.Ref = js_ast.Ref.None, + require_ref: js_ast.Ref = js_ast.Ref.None, + module_ref: js_ast.Ref = js_ast.Ref.None, + import_meta_ref: js_ast.Ref = js_ast.Ref.None, + promise_ref: ?js_ast.Ref = null, + scopes_in_order_visitor_index: usize = 0, + has_classic_runtime_warned: bool = false, + + cjs_import_stmts: std.ArrayList(Stmt), + + injected_define_symbols: List(Ref), + symbol_uses: SymbolUseMap, + declared_symbols: List(js_ast.DeclaredSymbol), + runtime_imports: RuntimeImports = RuntimeImports{}, + // duplicate_case_checker: void, + // non_bmp_identifiers: StringBoolMap, + // legacy_octal_literals: void, + // legacy_octal_literals: map[js_ast.E]logger.Range, + + // For lowering private methods + // weak_map_ref: ?js_ast.Ref, + // weak_set_ref: ?js_ast.Ref, + // private_getters: RefRefMap, + // private_setters: RefRefMap, + + // These are for TypeScript + should_fold_numeric_constants: bool = false, + emitted_namespace_vars: RefBoolMap, + is_exported_inside_namespace: RefRefMap, + known_enum_values: Map(js_ast.Ref, StringHashMap(f64)), + local_type_names: StringBoolMap, + + // This is the reference to the generated function argument for the namespace, + // which is different than the reference to the namespace itself: + // + // namespace ns { + // } + // + // The code above is transformed into something like this: + // + // var ns1; + // (function(ns2) { + // })(ns1 or (ns1 = {})); + // + // This variable is "ns2" not "ns1". It is only used during the second + // "visit" pass. + enclosing_namespace_arg_ref: ?js_ast.Ref = null, + + jsx_filename_ref: js_ast.Ref = Ref.None, + jsx_runtime_ref: js_ast.Ref = Ref.None, + jsx_factory_ref: js_ast.Ref = Ref.None, + jsx_fragment_ref: js_ast.Ref = Ref.None, + jsx_automatic_ref: js_ast.Ref = Ref.None, + jsx_classic_ref: js_ast.Ref = Ref.None, + + jsx_source_list_ref: js_ast.Ref = Ref.None, + + // Imports (both ES6 and CommonJS) are tracked at the top level + import_records: List(ImportRecord), + import_records_for_current_part: List(u32), + export_star_import_records: List(u32), + + // These are for handling ES6 imports and exports + es6_import_keyword: logger.Range = logger.Range.None, + es6_export_keyword: logger.Range = logger.Range.None, + enclosing_class_keyword: logger.Range = logger.Range.None, + import_items_for_namespace: Map(js_ast.Ref, StringHashMap(js_ast.LocRef)), + is_import_item: RefBoolMap, + named_imports: js_ast.Ast.NamedImports, + named_exports: js_ast.Ast.NamedExports, + top_level_symbol_to_parts: Map(js_ast.Ref, List(u32)), + import_namespace_cc_map: Map(ImportNamespaceCallOrConstruct, bool), + + // The parser does two passes and we need to pass the scope tree information + // from the first pass to the second pass. That's done by tracking the calls + // to pushScopeForParsePass() and popScope() during the first pass in + // scopesInOrder. + // + // Then, when the second pass calls pushScopeForVisitPass() and popScope(), + // we consume entries from scopesInOrder and make sure they are in the same + // order. This way the second pass can efficiently use the same scope tree + // as the first pass without having to attach the scope tree to the AST. + // + // We need to split this into two passes because the pass that declares the + // symbols must be separate from the pass that binds identifiers to declared + // symbols to handle declaring a hoisted "var" symbol in a nested scope and + // binding a name to it in a parent or sibling scope. + scopes_in_order: ScopeOrderList, + + // These properties are for the visit pass, which runs after the parse pass. + // The visit pass binds identifiers to declared symbols, does constant + // folding, substitutes compile-time variable definitions, and lowers certain + // syntactic constructs as appropriate. + stmt_expr_value: Expr.Data, + call_target: Expr.Data, + delete_target: Expr.Data, + loop_body: Stmt.Data, + module_scope: *js_ast.Scope = undefined, + is_control_flow_dead: bool = false, + + // Inside a TypeScript namespace, an "export declare" statement can be used + // to cause a namespace to be emitted even though it has no other observable + // effect. This flag is used to implement this feature. + // + // Specifically, namespaces should be generated for all of the following + // namespaces below except for "f", which should not be generated: + // + // namespace a { export declare const a } + // namespace b { export declare let [[b]] } + // namespace c { export declare function c() } + // namespace d { export declare class d {} } + // namespace e { export declare enum e {} } + // namespace f { export declare namespace f {} } + // + // The TypeScript compiler compiles this into the following code (notice "f" + // is missing): + // + // var a; (function (a_1) {})(a or (a = {})); + // var b; (function (b_1) {})(b or (b = {})); + // var c; (function (c_1) {})(c or (c = {})); + // var d; (function (d_1) {})(d or (d = {})); + // var e; (function (e_1) {})(e or (e = {})); + // + // Note that this should not be implemented by declaring symbols for "export + // declare" statements because the TypeScript compiler doesn't generate any + // code for these statements, so these statements are actually references to + // global variables. There is one exception, which is that local variables + // *should* be declared as symbols because they are replaced with. This seems + // like very arbitrary behavior but it's what the TypeScript compiler does, + // so we try to match it. + // + // Specifically, in the following code below "a" and "b" should be declared + // and should be substituted with "ns.a" and "ns.b" but the other symbols + // shouldn't. References to the other symbols actually refer to global + // variables instead of to symbols that are exported from the namespace. + // This is the case as of TypeScript 4.3. I assume this is a TypeScript bug: + // + // namespace ns { + // export declare const a + // export declare let [[b]] + // export declare function c() + // export declare class d { } + // export declare enum e { } + // console.log(a, b, c, d, e) + // } + // + // The TypeScript compiler compiles this into the following code: + // + // var ns; + // (function (ns) { + // console.log(ns.a, ns.b, c, d, e); + // })(ns or (ns = {})); + // + // Relevant issue: https://github.com/evanw/esbuild/issues/1158 + has_non_local_export_declare_inside_namespace: bool = false, + + // This helps recognize the "await import()" pattern. When this is present, + // warnings about non-string import paths will be omitted inside try blocks. + await_target: ?js_ast.Expr.Data = null, + + to_expr_wrapper_namespace: Binding2ExprWrapper.Namespace, + to_expr_wrapper_hoisted: Binding2ExprWrapper.Hoisted, + + // This helps recognize the "import().catch()" pattern. We also try to avoid + // warning about this just like the "try { await import() }" pattern. + then_catch_chain: ThenCatchChain, + + // Temporary variables used for lowering + temp_refs_to_declare: List(TempRef), + temp_ref_count: i32 = 0, + + // When bundling, hoisted top-level local variables declared with "var" in + // nested scopes are moved up to be declared in the top-level scope instead. + // The old "var" statements are turned into regular assignments instead. This + // makes it easier to quickly scan the top-level statements for "var" locals + // with the guarantee that all will be found. + relocated_top_level_vars: List(js_ast.LocRef), + + // ArrowFunction is a special case in the grammar. Although it appears to be + // a PrimaryExpression, it's actually an AssignmentExpression. This means if + // a AssignmentExpression ends up producing an ArrowFunction then nothing can + // come after it other than the comma operator, since the comma operator is + // the only thing above AssignmentExpression under the Expression rule: + // + // AssignmentExpression: + // ArrowFunction + // ConditionalExpression + // LeftHandSideExpression = AssignmentExpression + // LeftHandSideExpression AssignmentOperator AssignmentExpression + // + // Expression: + // AssignmentExpression + // Expression , AssignmentExpression + // + after_arrow_body_loc: logger.Loc = logger.Loc.Empty, + import_transposer: ImportTransposer, + require_transposer: RequireTransposer, + require_resolve_transposer: RequireResolveTransposer, - // This is a general place to put lots of Expr objects - expr_list: List(Expr), + // This is a general place to put lots of Expr objects + expr_list: List(Expr), - scope_order_to_visit: []ScopeOrder = &([_]ScopeOrder{}), + scope_order_to_visit: []ScopeOrder = &([_]ScopeOrder{}), - const TransposeState = struct { - is_await_target: bool = false, - is_then_catch_target: bool = false, - loc: logger.Loc, - }; + const TransposeState = struct { + is_await_target: bool = false, + is_then_catch_target: bool = false, + loc: logger.Loc, + }; - pub fn transposeImport(p: *P, arg: Expr, state: anytype) Expr { - // The argument must be a string - if (@as(Expr.Tag, arg.data) == .e_string) { - // Ignore calls to import() if the control flow is provably dead here. - // We don't want to spend time scanning the required files if they will - // never be used. - if (p.is_control_flow_dead) { - return p.e(E.Null{}, arg.loc); + pub fn transposeImport(p: *P, arg: Expr, state: anytype) Expr { + // The argument must be a string + if (@as(Expr.Tag, arg.data) == .e_string) { + // Ignore calls to import() if the control flow is provably dead here. + // We don't want to spend time scanning the required files if they will + // never be used. + if (p.is_control_flow_dead) { + return p.e(E.Null{}, arg.loc); + } + const str = arg.data.e_string; + + const import_record_index = p.addImportRecord(.dynamic, arg.loc, arg.data.e_string.string(p.allocator) catch unreachable); + p.import_records.items[import_record_index].handles_import_errors = (state.is_await_target and p.fn_or_arrow_data_visit.try_body_count != 0) or state.is_then_catch_target; + p.import_records_for_current_part.append(import_record_index) catch unreachable; + return p.e(E.Import{ + .expr = arg, + .import_record_index = Ref.toInt(import_record_index), + // .leading_interior_comments = arg.getString(). + }, state.loc); } - const str = arg.data.e_string; - const import_record_index = p.addImportRecord(.dynamic, arg.loc, arg.data.e_string.string(p.allocator) catch unreachable); - p.import_records.items[import_record_index].handles_import_errors = (state.is_await_target and p.fn_or_arrow_data_visit.try_body_count != 0) or state.is_then_catch_target; - p.import_records_for_current_part.append(import_record_index) catch unreachable; + // Use a debug log so people can see this if they want to + const r = js_lexer.rangeOfIdentifier(p.source, state.loc); + p.log.addRangeDebug(p.source, r, "This \"import\" expression will not be bundled because the argument is not a string literal") catch unreachable; + return p.e(E.Import{ .expr = arg, - .import_record_index = Ref.toInt(import_record_index), - // .leading_interior_comments = arg.getString(). + .import_record_index = Ref.None.source_index, }, state.loc); } - // Use a debug log so people can see this if they want to - const r = js_lexer.rangeOfIdentifier(p.source, state.loc); - p.log.addRangeDebug(p.source, r, "This \"import\" expression will not be bundled because the argument is not a string literal") catch unreachable; - - return p.e(E.Import{ - .expr = arg, - .import_record_index = Ref.None.source_index, - }, state.loc); - } - - pub fn transposeRequireResolve(p: *P, arg: Expr, transpose_state: anytype) Expr { - return arg; - } - - pub fn transposeRequire(p: *P, arg: Expr, transpose_state: anytype) Expr { - switch (arg.data) { - .e_string => |str| { + pub fn transposeRequireResolve(p: *P, arg: Expr, transpose_state: anytype) Expr { + return arg; + } - // Ignore calls to require() if the control flow is provably dead here. - // We don't want to spend time scanning the required files if they will - // never be used. - if (p.is_control_flow_dead) { - return Expr{ .data = nullExprData, .loc = arg.loc }; - } + pub fn transposeRequire(p: *P, arg: Expr, transpose_state: anytype) Expr { + switch (arg.data) { + .e_string => |str| { + + // Ignore calls to require() if the control flow is provably dead here. + // We don't want to spend time scanning the required files if they will + // never be used. + if (p.is_control_flow_dead) { + return Expr{ .data = nullExprData, .loc = arg.loc }; + } + + const original_name = str.string(p.allocator) catch unreachable; + const import_record_index = p.addImportRecord(.require, arg.loc, original_name); + p.import_records.items[import_record_index].handles_import_errors = p.fn_or_arrow_data_visit.try_body_count != 0; + p.import_records_for_current_part.append(import_record_index) catch unreachable; + const suffix = "_module"; + var base_identifier_name = fs.PathName.init(original_name).nonUniqueNameString(p.allocator) catch unreachable; + var cjs_import_name = p.allocator.alloc(u8, base_identifier_name.len + suffix.len) catch unreachable; + std.mem.copy( + u8, + cjs_import_name, + base_identifier_name, + ); + std.mem.copy(u8, cjs_import_name[base_identifier_name.len..], suffix); - const original_name = str.string(p.allocator) catch unreachable; - const import_record_index = p.addImportRecord(.require, arg.loc, original_name); - p.import_records.items[import_record_index].handles_import_errors = p.fn_or_arrow_data_visit.try_body_count != 0; - p.import_records_for_current_part.append(import_record_index) catch unreachable; - const suffix = "_module"; - var base_identifier_name = fs.PathName.init(original_name).nonUniqueNameString(p.allocator) catch unreachable; - var cjs_import_name = p.allocator.alloc(u8, base_identifier_name.len + suffix.len) catch unreachable; - std.mem.copy( - u8, - cjs_import_name, - base_identifier_name, - ); - std.mem.copy(u8, cjs_import_name[base_identifier_name.len..], suffix); + const namespace_ref = p.declareSymbol(.hoisted, arg.loc, cjs_import_name) catch unreachable; - const namespace_ref = p.declareSymbol(.hoisted, arg.loc, cjs_import_name) catch unreachable; + p.cjs_import_stmts.append( + p.s( + S.Import{ + .namespace_ref = namespace_ref, + .star_name_loc = arg.loc, + .is_single_line = true, + .import_record_index = import_record_index, + }, + arg.loc, + ), + ) catch unreachable; - p.cjs_import_stmts.append( - p.s( - S.Import{ - .namespace_ref = namespace_ref, - .star_name_loc = arg.loc, - .is_single_line = true, - .import_record_index = import_record_index, + const args = p.allocator.alloc(Expr, 1) catch unreachable; + args[0] = p.e( + E.Identifier{ + .can_be_removed_if_unused = true, + .ref = namespace_ref, }, arg.loc, - ), - ) catch unreachable; + ); - const args = p.allocator.alloc(Expr, 1) catch unreachable; - args[0] = p.e( - E.Identifier{ - .can_be_removed_if_unused = true, - .ref = namespace_ref, - }, - arg.loc, - ); + p.ignoreUsage(p.require_ref); - p.ignoreUsage(p.require_ref); + // require(import_object_assign) + return p.callRuntime(arg.loc, "__require", args); + }, + else => {}, + } - // require(import_object_assign) - return p.callRuntime(arg.loc, "__require", args); - }, - else => {}, + return arg; } - return arg; - } - - const ImportTransposer = ExpressionTransposer(P, P.transposeImport); - const RequireTransposer = ExpressionTransposer(P, P.transposeRequire); - const RequireResolveTransposer = ExpressionTransposer(P, P.transposeRequireResolve); + const ImportTransposer = ExpressionTransposer(P, P.transposeImport); + const RequireTransposer = ExpressionTransposer(P, P.transposeRequire); + const RequireResolveTransposer = ExpressionTransposer(P, P.transposeRequireResolve); - const Binding2ExprWrapper = struct { - pub const Namespace = Binding.ToExpr(P, P.wrapIdentifierNamespace); - pub const Hoisted = Binding.ToExpr(P, P.wrapIdentifierHoisting); - }; + const Binding2ExprWrapper = struct { + pub const Namespace = Binding.ToExpr(P, P.wrapIdentifierNamespace); + pub const Hoisted = Binding.ToExpr(P, P.wrapIdentifierHoisting); + }; - pub fn s(p: *P, t: anytype, loc: logger.Loc) Stmt { - // Output.print("\nStmt: {s} - {d}\n", .{ @typeName(@TypeOf(t)), loc.start }); - if (@typeInfo(@TypeOf(t)) == .Pointer) { - return Stmt.init(t, loc); - } else { - return Stmt.alloc(p.allocator, t, loc); + pub fn s(p: *P, t: anytype, loc: logger.Loc) Stmt { + // Output.print("\nStmt: {s} - {d}\n", .{ @typeName(@TypeOf(t)), loc.start }); + if (@typeInfo(@TypeOf(t)) == .Pointer) { + return Stmt.init(t, loc); + } else { + return Stmt.alloc(p.allocator, t, loc); + } } - } - pub fn e(p: *P, t: anytype, loc: logger.Loc) Expr { + pub fn e(p: *P, t: anytype, loc: logger.Loc) Expr { - // Output.print("\nExpr: {s} - {d}\n", .{ @typeName(@TypeOf(t)), loc.start }); - if (@typeInfo(@TypeOf(t)) == .Pointer) { - return Expr.init(t, loc); - } else { - return Expr.alloc(p.allocator, t, loc); + // Output.print("\nExpr: {s} - {d}\n", .{ @typeName(@TypeOf(t)), loc.start }); + if (@typeInfo(@TypeOf(t)) == .Pointer) { + return Expr.init(t, loc); + } else { + return Expr.alloc(p.allocator, t, loc); + } } - } - pub fn b(p: *P, t: anytype, loc: logger.Loc) Binding { - if (@typeInfo(@TypeOf(t)) == .Pointer) { - return Binding.init(t, loc); - } else { - return Binding.alloc(p.allocator, t, loc); + pub fn b(p: *P, t: anytype, loc: logger.Loc) Binding { + if (@typeInfo(@TypeOf(t)) == .Pointer) { + return Binding.init(t, loc); + } else { + return Binding.alloc(p.allocator, t, loc); + } } - } - pub fn deinit(parser: *P) void { - parser.allocated_names.deinit(); - parser.scopes_for_current_part.deinit(); - parser.symbols.deinit(); - parser.ts_use_counts.deinit(); - parser.declared_symbols.deinit(); - parser.known_enum_values.deinit(); - parser.import_records.deinit(); - parser.import_records_for_current_part.deinit(); - parser.export_star_import_records.deinit(); - parser.import_items_for_namespace.deinit(); - parser.named_imports.deinit(); - parser.top_level_symbol_to_parts.deinit(); - parser.import_namespace_cc_map.deinit(); - parser.scopes_in_order.deinit(); - parser.temp_refs_to_declare.deinit(); - parser.relocated_top_level_vars.deinit(); - } + pub fn deinit(parser: *P) void { + parser.allocated_names.deinit(); + parser.scopes_for_current_part.deinit(); + parser.symbols.deinit(); + parser.ts_use_counts.deinit(); + parser.declared_symbols.deinit(); + parser.known_enum_values.deinit(); + parser.import_records.deinit(); + parser.import_records_for_current_part.deinit(); + parser.export_star_import_records.deinit(); + parser.import_items_for_namespace.deinit(); + parser.named_imports.deinit(); + parser.top_level_symbol_to_parts.deinit(); + parser.import_namespace_cc_map.deinit(); + parser.scopes_in_order.deinit(); + parser.temp_refs_to_declare.deinit(); + parser.relocated_top_level_vars.deinit(); + } - pub fn findSymbol(p: *P, loc: logger.Loc, name: string) !FindSymbolResult { - var declare_loc: logger.Loc = undefined; - var is_inside_with_scope = false; - const hash = @TypeOf(p.module_scope.members).getHash(name); + pub fn findSymbol(p: *P, loc: logger.Loc, name: string) !FindSymbolResult { + var declare_loc: logger.Loc = undefined; + var is_inside_with_scope = false; + const hash = @TypeOf(p.module_scope.members).getHash(name); - const ref: Ref = brk: { - var _scope: ?*Scope = p.current_scope; + const ref: Ref = brk: { + var _scope: ?*Scope = p.current_scope; - var did_forbid_argumen = false; + var did_forbid_argumen = false; - while (_scope) |scope| : (_scope = _scope.?.parent) { + while (_scope) |scope| : (_scope = _scope.?.parent) { - // Track if we're inside a "with" statement body - if (scope.kind == .with) { - is_inside_with_scope = true; - } + // Track if we're inside a "with" statement body + if (scope.kind == .with) { + is_inside_with_scope = true; + } - // Forbid referencing "arguments" inside class bodies - if (scope.forbid_arguments and !did_forbid_argumen and strings.eqlComptime(name, "arguments")) { - const r = js_lexer.rangeOfIdentifier(p.source, loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot access \"{s}\" here", .{name}) catch unreachable; - did_forbid_argumen = true; - } + // Forbid referencing "arguments" inside class bodies + if (scope.forbid_arguments and !did_forbid_argumen and strings.eqlComptime(name, "arguments")) { + const r = js_lexer.rangeOfIdentifier(p.source, loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot access \"{s}\" here", .{name}) catch unreachable; + did_forbid_argumen = true; + } - // Is the symbol a member of this scope? - if (scope.members.getWithHash(name, hash)) |member| { - declare_loc = member.loc; - break :brk member.ref; + // Is the symbol a member of this scope? + if (scope.members.getWithHash(name, hash)) |member| { + declare_loc = member.loc; + break :brk member.ref; + } } - } - // Allocate an "unbound" symbol - p.checkForNonBMPCodePoint(loc, name); - const _ref = p.newSymbol(.unbound, name) catch unreachable; - declare_loc = loc; - p.module_scope.members.putWithHash(name, hash, js_ast.Scope.Member{ .ref = _ref, .loc = logger.Loc.Empty }) catch unreachable; - - break :brk _ref; - }; + // Allocate an "unbound" symbol + p.checkForNonBMPCodePoint(loc, name); + const _ref = p.newSymbol(.unbound, name) catch unreachable; + declare_loc = loc; + p.module_scope.members.putWithHash(name, hash, js_ast.Scope.Member{ .ref = _ref, .loc = logger.Loc.Empty }) catch unreachable; - // If we had to pass through a "with" statement body to get to the symbol - // declaration, then this reference could potentially also refer to a - // property on the target object of the "with" statement. We must not rename - // it or we risk changing the behavior of the code. - if (is_inside_with_scope) { - p.symbols.items[ref.inner_index].must_not_be_renamed = true; - } + break :brk _ref; + }; - // Track how many times we've referenced this symbol - p.recordUsage(ref); + // If we had to pass through a "with" statement body to get to the symbol + // declaration, then this reference could potentially also refer to a + // property on the target object of the "with" statement. We must not rename + // it or we risk changing the behavior of the code. + if (is_inside_with_scope) { + p.symbols.items[ref.inner_index].must_not_be_renamed = true; + } - return FindSymbolResult{ - .ref = ref, - .declare_loc = declare_loc, - .is_inside_with_scope = is_inside_with_scope, - }; - } + // Track how many times we've referenced this symbol + p.recordUsage(ref); - pub fn recordExportedBinding(p: *P, binding: Binding) void { - switch (binding.data) { - .b_missing => {}, - .b_identifier => |ident| { - p.recordExport(binding.loc, p.symbols.items[ident.ref.inner_index].original_name, ident.ref) catch unreachable; - }, - .b_array => |array| { - for (array.items) |prop| { - p.recordExportedBinding(prop.binding); - } - }, - .b_object => |obj| { - for (obj.properties) |prop| { - p.recordExportedBinding(prop.value); - } - }, - else => { - p.panic("Unexpected binding export type {s}", .{binding}); - }, + return FindSymbolResult{ + .ref = ref, + .declare_loc = declare_loc, + .is_inside_with_scope = is_inside_with_scope, + }; } - } - pub fn recordExport(p: *P, loc: logger.Loc, alias: string, ref: Ref) !void { - if (p.named_exports.get(alias)) |name| { - // Duplicate exports are an error - var notes = try p.allocator.alloc(logger.Data, 1); - notes[0] = logger.Data{ - .text = try std.fmt.allocPrint(p.allocator, "\"{s}\" was originally exported here", .{alias}), - .location = logger.Location.init_or_nil(p.source, js_lexer.rangeOfIdentifier(p.source, name.alias_loc)), - }; - try p.log.addRangeErrorFmtWithNotes( - p.source, - js_lexer.rangeOfIdentifier(p.source, loc), - p.allocator, - notes, - "Multiple exports with the same name {s}", - .{alias}, - ); - } else { - try p.named_exports.put(alias, js_ast.NamedExport{ .alias_loc = loc, .ref = ref }); + pub fn recordExportedBinding(p: *P, binding: Binding) void { + switch (binding.data) { + .b_missing => {}, + .b_identifier => |ident| { + p.recordExport(binding.loc, p.symbols.items[ident.ref.inner_index].original_name, ident.ref) catch unreachable; + }, + .b_array => |array| { + for (array.items) |prop| { + p.recordExportedBinding(prop.binding); + } + }, + .b_object => |obj| { + for (obj.properties) |prop| { + p.recordExportedBinding(prop.value); + } + }, + else => { + p.panic("Unexpected binding export type {s}", .{binding}); + }, + } } - } - pub fn recordUsage(p: *P, ref: js_ast.Ref) void { - // The use count stored in the symbol is used for generating symbol names - // during minification. These counts shouldn't include references inside dead - // code regions since those will be culled. - if (!p.is_control_flow_dead) { - std.debug.assert(p.symbols.items.len > ref.inner_index); - p.symbols.items[ref.inner_index].use_count_estimate += 1; - var result = p.symbol_uses.getOrPut(ref) catch unreachable; - if (!result.found_existing) { - result.entry.value = Symbol.Use{ .count_estimate = 1 }; + pub fn recordExport(p: *P, loc: logger.Loc, alias: string, ref: Ref) !void { + if (p.named_exports.get(alias)) |name| { + // Duplicate exports are an error + var notes = try p.allocator.alloc(logger.Data, 1); + notes[0] = logger.Data{ + .text = try std.fmt.allocPrint(p.allocator, "\"{s}\" was originally exported here", .{alias}), + .location = logger.Location.init_or_nil(p.source, js_lexer.rangeOfIdentifier(p.source, name.alias_loc)), + }; + try p.log.addRangeErrorFmtWithNotes( + p.source, + js_lexer.rangeOfIdentifier(p.source, loc), + p.allocator, + notes, + "Multiple exports with the same name {s}", + .{alias}, + ); } else { - result.entry.value.count_estimate += 1; + try p.named_exports.put(alias, js_ast.NamedExport{ .alias_loc = loc, .ref = ref }); } } - // The correctness of TypeScript-to-JavaScript conversion relies on accurate - // symbol use counts for the whole file, including dead code regions. This is - // tracked separately in a parser-only data structure. - if (p.options.ts) { - p.ts_use_counts.items[ref.inner_index] += 1; - } - } + pub fn recordUsage(p: *P, ref: js_ast.Ref) void { + // The use count stored in the symbol is used for generating symbol names + // during minification. These counts shouldn't include references inside dead + // code regions since those will be culled. + if (!p.is_control_flow_dead) { + std.debug.assert(p.symbols.items.len > ref.inner_index); + p.symbols.items[ref.inner_index].use_count_estimate += 1; + var result = p.symbol_uses.getOrPut(ref) catch unreachable; + if (!result.found_existing) { + result.entry.value = Symbol.Use{ .count_estimate = 1 }; + } else { + result.entry.value.count_estimate += 1; + } + } - pub fn findSymbolHelper(self: *P, loc: logger.Loc, name: string) ?js_ast.Ref { - if (self.findSymbol(loc, name)) |sym| { - return sym.ref; + // The correctness of TypeScript-to-JavaScript conversion relies on accurate + // symbol use counts for the whole file, including dead code regions. This is + // tracked separately in a parser-only data structure. + if (is_typescript_enabled) { + p.ts_use_counts.items[ref.inner_index] += 1; + } } - return null; - } + pub fn findSymbolHelper(self: *P, loc: logger.Loc, name: string) ?js_ast.Ref { + if (self.findSymbol(loc, name)) |sym| { + return sym.ref; + } - pub fn symbolForDefineHelper(self: *P, i: usize) ?js_ast.Ref { - if (self.injected_define_symbols.items.len > i) { - return self.injected_define_symbols.items[i]; + return null; } - return null; - } - - pub fn logArrowArgErrors(p: *P, errors: *DeferredArrowArgErrors) void { - if (errors.invalid_expr_await.len > 0) { - var r = errors.invalid_expr_await; - p.log.addRangeError(p.source, r, "Cannot use an \"await\" expression here") catch unreachable; - } + pub fn symbolForDefineHelper(self: *P, i: usize) ?js_ast.Ref { + if (self.injected_define_symbols.items.len > i) { + return self.injected_define_symbols.items[i]; + } - if (errors.invalid_expr_yield.len > 0) { - var r = errors.invalid_expr_yield; - p.log.addRangeError(p.source, r, "Cannot use a \"yield\" expression here") catch unreachable; + return null; } - } - pub fn keyNameForError(p: *P, key: js_ast.Expr) string { - switch (key.data) { - .e_string => { - return p.lexer.raw(); - }, - .e_private_identifier => { - return p.lexer.raw(); - // return p.loadNameFromRef() - }, - else => { - return "property"; - }, - } - } + pub fn logArrowArgErrors(p: *P, errors: *DeferredArrowArgErrors) void { + if (errors.invalid_expr_await.len > 0) { + var r = errors.invalid_expr_await; + p.log.addRangeError(p.source, r, "Cannot use an \"await\" expression here") catch unreachable; + } - pub fn canMergeSymbols(p: *P, scope: *js_ast.Scope, existing: Symbol.Kind, new: Symbol.Kind) SymbolMergeResult { - if (existing == .unbound) { - return .replace_with_new; + if (errors.invalid_expr_yield.len > 0) { + var r = errors.invalid_expr_yield; + p.log.addRangeError(p.source, r, "Cannot use a \"yield\" expression here") catch unreachable; + } } - // In TypeScript, imports are allowed to silently collide with symbols within - // the module. Presumably this is because the imports may be type-only: - // - // import {Foo} from 'bar' - // class Foo {} - // - if (p.options.ts and existing == .import) { - return .replace_with_new; + pub fn keyNameForError(p: *P, key: js_ast.Expr) string { + switch (key.data) { + .e_string => { + return p.lexer.raw(); + }, + .e_private_identifier => { + return p.lexer.raw(); + // return p.loadNameFromRef() + }, + else => { + return "property"; + }, + } } - // "enum Foo {} enum Foo {}" - // "namespace Foo { ... } enum Foo {}" - if (new == .ts_enum and (existing == .ts_enum or existing == .ts_namespace)) { - return .replace_with_new; - } + pub fn canMergeSymbols(p: *P, scope: *js_ast.Scope, existing: Symbol.Kind, new: Symbol.Kind) SymbolMergeResult { + if (existing == .unbound) { + return .replace_with_new; + } - // "namespace Foo { ... } namespace Foo { ... }" - // "function Foo() {} namespace Foo { ... }" - // "enum Foo {} namespace Foo { ... }" - if (new == .ts_namespace) { - switch (existing) { - .ts_namespace, .hoisted_function, .generator_or_async_function, .ts_enum, .class => { - return .keep_existing; - }, - else => {}, + // In TypeScript, imports are allowed to silently collide with symbols within + // the module. Presumably this is because the imports may be type-only: + // + // import {Foo} from 'bar' + // class Foo {} + // + if (is_typescript_enabled and existing == .import) { + return .replace_with_new; } - } - // "var foo; var foo;" - // "var foo; function foo() {}" - // "function foo() {} var foo;" - // "function *foo() {} function *foo() {}" but not "{ function *foo() {} function *foo() {} }" - if (Symbol.isKindHoistedOrFunction(new) and Symbol.isKindHoistedOrFunction(existing) and (scope.kind == .entry or scope.kind == .function_body or - (Symbol.isKindHoisted(new) and Symbol.isKindHoisted(existing)))) - { - return .keep_existing; - } + // "enum Foo {} enum Foo {}" + // "namespace Foo { ... } enum Foo {}" + if (new == .ts_enum and (existing == .ts_enum or existing == .ts_namespace)) { + return .replace_with_new; + } - // "get #foo() {} set #foo() {}" - // "set #foo() {} get #foo() {}" - if ((existing == .private_get and new == .private_set) or - (existing == .private_set and new == .private_get)) - { - return .become_private_get_set_pair; - } - if ((existing == .private_static_get and new == .private_static_set) or - (existing == .private_static_set and new == .private_static_get)) - { - return .become_private_static_get_set_pair; - } + // "namespace Foo { ... } namespace Foo { ... }" + // "function Foo() {} namespace Foo { ... }" + // "enum Foo {} namespace Foo { ... }" + if (new == .ts_namespace) { + switch (existing) { + .ts_namespace, .hoisted_function, .generator_or_async_function, .ts_enum, .class => { + return .keep_existing; + }, + else => {}, + } + } - // "try {} catch (e) { var e }" - if (existing == .catch_identifier and new == .hoisted) { - return .replace_with_new; - } + // "var foo; var foo;" + // "var foo; function foo() {}" + // "function foo() {} var foo;" + // "function *foo() {} function *foo() {}" but not "{ function *foo() {} function *foo() {} }" + if (Symbol.isKindHoistedOrFunction(new) and Symbol.isKindHoistedOrFunction(existing) and (scope.kind == .entry or scope.kind == .function_body or + (Symbol.isKindHoisted(new) and Symbol.isKindHoisted(existing)))) + { + return .keep_existing; + } - // "function() { var arguments }" - if (existing == .arguments and new == .hoisted) { - return .keep_existing; - } + // "get #foo() {} set #foo() {}" + // "set #foo() {} get #foo() {}" + if ((existing == .private_get and new == .private_set) or + (existing == .private_set and new == .private_get)) + { + return .become_private_get_set_pair; + } + if ((existing == .private_static_get and new == .private_static_set) or + (existing == .private_static_set and new == .private_static_get)) + { + return .become_private_static_get_set_pair; + } - // "function() { let arguments }" - if (existing == .arguments and new != .hoisted) { - return .overwrite_with_new; - } + // "try {} catch (e) { var e }" + if (existing == .catch_identifier and new == .hoisted) { + return .replace_with_new; + } - return .forbidden; - } + // "function() { var arguments }" + if (existing == .arguments and new == .hoisted) { + return .keep_existing; + } - pub fn handleIdentifier(p: *P, loc: logger.Loc, ident: *E.Identifier, _original_name: ?string, opts: IdentifierOpts) Expr { - const ref = ident.ref; + // "function() { let arguments }" + if (existing == .arguments and new != .hoisted) { + return .overwrite_with_new; + } - if ((opts.assign_target != .none or opts.is_delete_target) and p.symbols.items[ref.inner_index].kind == .import) { - // Create an error for assigning to an import namespace - const r = js_lexer.rangeOfIdentifier(p.source, loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot assign to import \"{s}\"", .{ - p.symbols.items[ref.inner_index].original_name, - }) catch unreachable; + return .forbidden; } - // Substitute an EImportIdentifier now if this is an import item - if (p.is_import_item.contains(ref)) { - return p.e( - E.ImportIdentifier{ .ref = ref, .was_originally_identifier = opts.was_originally_identifier }, - loc, - ); - } + pub fn handleIdentifier(p: *P, loc: logger.Loc, ident: *E.Identifier, _original_name: ?string, opts: IdentifierOpts) Expr { + const ref = ident.ref; - // Substitute a namespace export reference now if appropriate - if (p.options.ts) { - if (p.is_exported_inside_namespace.get(ref)) |ns_ref| { - const name = p.symbols.items[ref.inner_index].original_name; + if ((opts.assign_target != .none or opts.is_delete_target) and p.symbols.items[ref.inner_index].kind == .import) { + // Create an error for assigning to an import namespace + const r = js_lexer.rangeOfIdentifier(p.source, loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot assign to import \"{s}\"", .{ + p.symbols.items[ref.inner_index].original_name, + }) catch unreachable; + } - // If this is a known enum value, inline the value of the enum - if (p.known_enum_values.get(ns_ref)) |enum_values| { - if (enum_values.get(name)) |number| { - return p.e(E.Number{ .value = number }, loc); + // Substitute an EImportIdentifier now if this is an import item + if (p.is_import_item.contains(ref)) { + return p.e( + E.ImportIdentifier{ .ref = ref, .was_originally_identifier = opts.was_originally_identifier }, + loc, + ); + } + + // Substitute a namespace export reference now if appropriate + if (is_typescript_enabled) { + if (p.is_exported_inside_namespace.get(ref)) |ns_ref| { + const name = p.symbols.items[ref.inner_index].original_name; + + // If this is a known enum value, inline the value of the enum + if (p.known_enum_values.get(ns_ref)) |enum_values| { + if (enum_values.get(name)) |number| { + return p.e(E.Number{ .value = number }, loc); + } } - } - // Otherwise, create a property access on the namespace - p.recordUsage(ns_ref); + // Otherwise, create a property access on the namespace + p.recordUsage(ns_ref); - return p.e(E.Dot{ .target = p.e(E.Identifier{ .ref = ns_ref }, loc), .name = name, .name_loc = loc }, loc); + return p.e(E.Dot{ .target = p.e(E.Identifier{ .ref = ns_ref }, loc), .name = name, .name_loc = loc }, loc); + } + } + + if (_original_name) |original_name| { + const result = p.findSymbol(loc, original_name) catch unreachable; + ident.ref = result.ref; } - } - if (_original_name) |original_name| { - const result = p.findSymbol(loc, original_name) catch unreachable; - ident.ref = result.ref; + return p.e(ident, loc); } - return p.e(ident, loc); - } + pub fn generateImportStmt( + p: *P, + import_path: string, + imports: anytype, + parts: *List(js_ast.Part), + symbols: anytype, + additional_stmt: ?Stmt, + comptime suffix: string, + ) !void { + const import_record_i = p.addImportRecordByRange(.stmt, logger.Range.None, import_path); + var import_record = p.import_records.items[import_record_i]; + var import_path_identifier = try import_record.path.name.nonUniqueNameString(p.allocator); + var namespace_identifier = try p.allocator.alloc(u8, import_path_identifier.len + suffix.len); + var clause_items = try p.allocator.alloc(js_ast.ClauseItem, imports.len); + var stmts = try p.allocator.alloc(Stmt, 1 + if (additional_stmt != null) @as(usize, 1) else @as(usize, 0)); + var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, imports.len); + std.mem.copy(u8, namespace_identifier[0..suffix.len], suffix); + std.mem.copy( + u8, + namespace_identifier[suffix.len..namespace_identifier.len], + import_path_identifier[0..import_path_identifier.len], + ); - pub fn generateImportStmt( - p: *P, - import_path: string, - imports: anytype, - parts: *List(js_ast.Part), - symbols: anytype, - additional_stmt: ?Stmt, - comptime suffix: string, - ) !void { - const import_record_i = p.addImportRecordByRange(.stmt, logger.Range.None, import_path); - var import_record = p.import_records.items[import_record_i]; - var import_path_identifier = try import_record.path.name.nonUniqueNameString(p.allocator); - var namespace_identifier = try p.allocator.alloc(u8, import_path_identifier.len + suffix.len); - var clause_items = try p.allocator.alloc(js_ast.ClauseItem, imports.len); - var stmts = try p.allocator.alloc(Stmt, 1 + if (additional_stmt != null) @as(usize, 1) else @as(usize, 0)); - var declared_symbols = try p.allocator.alloc(js_ast.DeclaredSymbol, imports.len); - std.mem.copy(u8, namespace_identifier[0..suffix.len], suffix); - std.mem.copy( - u8, - namespace_identifier[suffix.len..namespace_identifier.len], - import_path_identifier[0..import_path_identifier.len], - ); - - const namespace_ref = try p.newSymbol(.other, namespace_identifier); - try p.module_scope.generated.append(namespace_ref); - - for (imports) |alias, i| { - const ref = symbols.get(alias) orelse unreachable; - const alias_name = if (@TypeOf(symbols) == RuntimeImports) RuntimeImports.all[alias] else alias; - clause_items[i] = js_ast.ClauseItem{ - .alias = alias_name, - .original_name = alias_name, - .alias_loc = logger.Loc{}, - .name = LocRef{ .ref = ref, .loc = logger.Loc{} }, - }; - declared_symbols[i] = js_ast.DeclaredSymbol{ .ref = ref, .is_top_level = true }; - try p.is_import_item.put(ref, true); - try p.named_imports.put(ref, js_ast.NamedImport{ - .alias = alias_name, - .alias_loc = logger.Loc{}, + const namespace_ref = try p.newSymbol(.other, namespace_identifier); + try p.module_scope.generated.append(namespace_ref); + + for (imports) |alias, i| { + const ref = symbols.get(alias) orelse unreachable; + const alias_name = if (@TypeOf(symbols) == RuntimeImports) RuntimeImports.all[alias] else alias; + clause_items[i] = js_ast.ClauseItem{ + .alias = alias_name, + .original_name = alias_name, + .alias_loc = logger.Loc{}, + .name = LocRef{ .ref = ref, .loc = logger.Loc{} }, + }; + declared_symbols[i] = js_ast.DeclaredSymbol{ .ref = ref, .is_top_level = true }; + try p.is_import_item.put(ref, true); + try p.named_imports.put(ref, js_ast.NamedImport{ + .alias = alias_name, + .alias_loc = logger.Loc{}, + .namespace_ref = namespace_ref, + .import_record_index = import_record_i, + }); + } + + stmts[0] = p.s(S.Import{ .namespace_ref = namespace_ref, + .items = clause_items, .import_record_index = import_record_i, - }); - } - - stmts[0] = p.s(S.Import{ - .namespace_ref = namespace_ref, - .items = clause_items, - .import_record_index = import_record_i, - }, logger.Loc{}); - if (additional_stmt) |add| { - stmts[1] = add; - } + }, logger.Loc{}); + if (additional_stmt) |add| { + stmts[1] = add; + } - var import_records = try p.allocator.alloc(@TypeOf(import_record_i), 1); - import_records[0] = import_record_i; + var import_records = try p.allocator.alloc(@TypeOf(import_record_i), 1); + import_records[0] = import_record_i; - // Append a single import to the end of the file (ES6 imports are hoisted - // so we don't need to worry about where the import statement goes) - parts.append(js_ast.Part{ - .stmts = stmts, - .declared_symbols = declared_symbols, - .import_record_indices = import_records, - .symbol_uses = SymbolUseMap.init(p.allocator), - }) catch unreachable; - } + // Append a single import to the end of the file (ES6 imports are hoisted + // so we don't need to worry about where the import statement goes) + parts.append(js_ast.Part{ + .stmts = stmts, + .declared_symbols = declared_symbols, + .import_record_indices = import_records, + .symbol_uses = SymbolUseMap.init(p.allocator), + }) catch unreachable; + } - pub fn prepareForVisitPass(p: *P) !void { - { - var count: usize = 0; - for (p.scopes_in_order.items) |item| { - if (item != null) { - count += 1; + pub fn prepareForVisitPass(p: *P) !void { + { + var count: usize = 0; + for (p.scopes_in_order.items) |item| { + if (item != null) { + count += 1; + } } - } - var i: usize = 0; - p.scope_order_to_visit = try p.allocator.alloc(ScopeOrder, p.scopes_in_order.items.len); - for (p.scopes_in_order.items) |item| { - if (item) |_item| { - p.scope_order_to_visit[i] = _item; - i += 1; + var i: usize = 0; + p.scope_order_to_visit = try p.allocator.alloc(ScopeOrder, p.scopes_in_order.items.len); + for (p.scopes_in_order.items) |item| { + if (item) |_item| { + p.scope_order_to_visit[i] = _item; + i += 1; + } } } - } - try p.pushScopeForVisitPass(js_ast.Scope.Kind.entry, locModuleScope); - p.fn_or_arrow_data_visit.is_outside_fn_or_arrow = true; - p.module_scope = p.current_scope; - p.has_es_module_syntax = p.es6_import_keyword.len > 0 or p.es6_export_keyword.len > 0 or p.top_level_await_keyword.len > 0; + try p.pushScopeForVisitPass(js_ast.Scope.Kind.entry, locModuleScope); + p.fn_or_arrow_data_visit.is_outside_fn_or_arrow = true; + p.module_scope = p.current_scope; + p.has_es_module_syntax = p.es6_import_keyword.len > 0 or p.es6_export_keyword.len > 0 or p.top_level_await_keyword.len > 0; - // ECMAScript modules are always interpreted as strict mode. This has to be - // done before "hoistSymbols" because strict mode can alter hoisting (!). - if (p.es6_import_keyword.len > 0) { - p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_import); - } else if (p.es6_export_keyword.len > 0) { - p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_export); - } else if (p.top_level_await_keyword.len > 0) { - p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_top_level_await); - } + // ECMAScript modules are always interpreted as strict mode. This has to be + // done before "hoistSymbols" because strict mode can alter hoisting (!). + if (p.es6_import_keyword.len > 0) { + p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_import); + } else if (p.es6_export_keyword.len > 0) { + p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_export); + } else if (p.top_level_await_keyword.len > 0) { + p.module_scope.recursiveSetStrictMode(js_ast.StrictModeKind.implicit_strict_mode_top_level_await); + } - p.hoistSymbols(p.module_scope); + p.hoistSymbols(p.module_scope); - p.require_ref = try p.declareCommonJSSymbol(.unbound, "require"); - p.exports_ref = try p.declareSymbol(.hoisted, logger.Loc.Empty, "exports"); - p.module_ref = try p.declareSymbol(.hoisted, logger.Loc.Empty, "module"); + p.require_ref = try p.declareCommonJSSymbol(.unbound, "require"); + p.exports_ref = try p.declareSymbol(.hoisted, logger.Loc.Empty, "exports"); + p.module_ref = try p.declareSymbol(.hoisted, logger.Loc.Empty, "module"); - p.runtime_imports.__require = p.require_ref; + p.runtime_imports.__require = p.require_ref; - if (p.options.jsx.parse) { - if (p.options.jsx.development) { - p.jsx_filename_ref = p.newSymbol(.hoisted, Prefill.Runtime.JSXFilename) catch unreachable; - } - const jsx_importname = p.options.jsx.jsx; - p.jsx_fragment_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, p.options.jsx.fragment[p.options.jsx.fragment.len - 1]) catch unreachable; - p.jsx_runtime_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, jsx_importname) catch unreachable; - p.jsx_factory_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, p.options.jsx.factory[p.options.jsx.factory.len - 1]) catch unreachable; + if (is_jsx_enabled) { + if (p.options.jsx.development) { + p.jsx_filename_ref = p.newSymbol(.hoisted, Prefill.Runtime.JSXFilename) catch unreachable; + } + const jsx_importname = p.options.jsx.jsx; + p.jsx_fragment_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, p.options.jsx.fragment[p.options.jsx.fragment.len - 1]) catch unreachable; + p.jsx_runtime_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, jsx_importname) catch unreachable; + p.jsx_factory_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, p.options.jsx.factory[p.options.jsx.factory.len - 1]) catch unreachable; - if (p.options.jsx.factory.len > 1 or FeatureFlags.jsx_runtime_is_cjs) { - const source_name_base = fs.PathName.init(p.options.jsx.factory[0]).nonUniqueNameString(p.allocator) catch unreachable; - const namespace_name = strings.cat(p.allocator, source_name_base, if (source_name_base[source_name_base.len - 1] == '_') "dot_jsx" else "_dot_jsx") catch unreachable; - p.jsx_classic_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, namespace_name) catch unreachable; - } + if (p.options.jsx.factory.len > 1 or FeatureFlags.jsx_runtime_is_cjs) { + const source_name_base = fs.PathName.init(p.options.jsx.factory[0]).nonUniqueNameString(p.allocator) catch unreachable; + const namespace_name = strings.cat(p.allocator, source_name_base, if (source_name_base[source_name_base.len - 1] == '_') "dot_jsx" else "_dot_jsx") catch unreachable; + p.jsx_classic_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, namespace_name) catch unreachable; + } - if (p.options.jsx.import_source.len > 0) { - const source_name_base = fs.PathName.init(p.options.jsx.import_source).nonUniqueNameString(p.allocator) catch unreachable; - const namespace_name = strings.cat(p.allocator, source_name_base, if (source_name_base[source_name_base.len - 1] == '_') "runtime" else "_runtime") catch unreachable; - p.jsx_automatic_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, namespace_name) catch unreachable; + if (p.options.jsx.import_source.len > 0) { + const source_name_base = fs.PathName.init(p.options.jsx.import_source).nonUniqueNameString(p.allocator) catch unreachable; + const namespace_name = strings.cat(p.allocator, source_name_base, if (source_name_base[source_name_base.len - 1] == '_') "runtime" else "_runtime") catch unreachable; + p.jsx_automatic_ref = p.declareSymbol(.hoisted, logger.Loc.Empty, namespace_name) catch unreachable; + } } } - } - - pub fn hoistSymbols(p: *P, scope: *js_ast.Scope) void { - if (!scope.kindStopsHoisting()) { - var iter = scope.members.iterator(); - nextMember: while (iter.next()) |res| { - var symbol = p.symbols.items[res.value.ref.inner_index]; - if (!symbol.isHoisted()) { - continue :nextMember; - } - // Check for collisions that would prevent to hoisting "var" symbols up to the enclosing function scope - var __scope = scope.parent; + pub fn hoistSymbols(p: *P, scope: *js_ast.Scope) void { + if (!scope.kindStopsHoisting()) { + var iter = scope.members.iterator(); + nextMember: while (iter.next()) |res| { + var symbol = p.symbols.items[res.value.ref.inner_index]; + if (!symbol.isHoisted()) { + continue :nextMember; + } - var hash: u64 = undefined; - if (__scope) |_scope| { - hash = @TypeOf(_scope.members).getHash(symbol.original_name); - } + // Check for collisions that would prevent to hoisting "var" symbols up to the enclosing function scope + var __scope = scope.parent; - while (__scope) |_scope| { - // Variable declarations hoisted past a "with" statement may actually end - // up overwriting a property on the target of the "with" statement instead - // of initializing the variable. We must not rename them or we risk - // causing a behavior change. - // - // var obj = { foo: 1 } - // with (obj) { var foo = 2 } - // assert(foo === undefined) - // assert(obj.foo === 2) - // - if (_scope.kind == .with) { - symbol.must_not_be_renamed = true; + var hash: u64 = undefined; + if (__scope) |_scope| { + hash = @TypeOf(_scope.members).getHash(symbol.original_name); } - if (_scope.members.getEntryWithHash(symbol.original_name, hash)) |existing_member_entry| { - const existing_member = existing_member_entry.value; - const existing_symbol: Symbol = p.symbols.items[existing_member.ref.inner_index]; - - // We can hoist the symbol from the child scope into the symbol in - // this scope if: + while (__scope) |_scope| { + // Variable declarations hoisted past a "with" statement may actually end + // up overwriting a property on the target of the "with" statement instead + // of initializing the variable. We must not rename them or we risk + // causing a behavior change. // - // - The symbol is unbound (i.e. a global variable access) - // - The symbol is also another hoisted variable - // - The symbol is a function of any kind and we're in a function or module scope + // var obj = { foo: 1 } + // with (obj) { var foo = 2 } + // assert(foo === undefined) + // assert(obj.foo === 2) // - // Is this unbound (i.e. a global access) or also hoisted? - if (existing_symbol.kind == .unbound or existing_symbol.kind == .hoisted or - (Symbol.isKindFunction(existing_symbol.kind) and (_scope.kind == .entry or _scope.kind == .function_body))) - { - // Silently merge this symbol into the existing symbol - symbol.link = existing_member.ref; - continue :nextMember; + if (_scope.kind == .with) { + symbol.must_not_be_renamed = true; } - } - if (_scope.kindStopsHoisting()) { - _scope.members.putWithHash(symbol.original_name, hash, res.value) catch unreachable; - break; + if (_scope.members.getEntryWithHash(symbol.original_name, hash)) |existing_member_entry| { + const existing_member = existing_member_entry.value; + const existing_symbol: Symbol = p.symbols.items[existing_member.ref.inner_index]; + + // We can hoist the symbol from the child scope into the symbol in + // this scope if: + // + // - The symbol is unbound (i.e. a global variable access) + // - The symbol is also another hoisted variable + // - The symbol is a function of any kind and we're in a function or module scope + // + // Is this unbound (i.e. a global access) or also hoisted? + if (existing_symbol.kind == .unbound or existing_symbol.kind == .hoisted or + (Symbol.isKindFunction(existing_symbol.kind) and (_scope.kind == .entry or _scope.kind == .function_body))) + { + // Silently merge this symbol into the existing symbol + symbol.link = existing_member.ref; + continue :nextMember; + } + } + + if (_scope.kindStopsHoisting()) { + _scope.members.putWithHash(symbol.original_name, hash, res.value) catch unreachable; + break; + } + __scope = _scope.parent; } - __scope = _scope.parent; } } + + for (scope.children.items) |_item, i| { + p.hoistSymbols(scope.children.items[i]); + } } - for (scope.children.items) |_item, i| { - p.hoistSymbols(scope.children.items[i]); + pub fn nextScopeInOrderForVisitPass(p: *P) ScopeOrder { + const head = p.scope_order_to_visit[0]; + p.scope_order_to_visit = p.scope_order_to_visit[1..p.scope_order_to_visit.len]; + return head; } - } - pub fn nextScopeInOrderForVisitPass(p: *P) ScopeOrder { - const head = p.scope_order_to_visit[0]; - p.scope_order_to_visit = p.scope_order_to_visit[1..p.scope_order_to_visit.len]; - return head; - } + pub fn pushScopeForVisitPass(p: *P, kind: js_ast.Scope.Kind, loc: logger.Loc) !void { + // Output.print("\n+Loc: {d}\n", .{loc.start}); + // for (p.scopes_in_order.items[p.scopes_in_order_visitor_index..p.scopes_in_order.items.len]) |scope_order, i| { + // if (scope_order) |ord| { + // Output.print("Scope ({d}, {d})\n", .{ @enumToInt(ord.scope.kind), ord.loc.start }); + // } + // } + const order = p.nextScopeInOrderForVisitPass(); - pub fn pushScopeForVisitPass(p: *P, kind: js_ast.Scope.Kind, loc: logger.Loc) !void { - // Output.print("\n+Loc: {d}\n", .{loc.start}); - // for (p.scopes_in_order.items[p.scopes_in_order_visitor_index..p.scopes_in_order.items.len]) |scope_order, i| { - // if (scope_order) |ord| { - // Output.print("Scope ({d}, {d})\n", .{ @enumToInt(ord.scope.kind), ord.loc.start }); - // } - // } - const order = p.nextScopeInOrderForVisitPass(); + // Sanity-check that the scopes generated by the first and second passes match + if (order.loc.start != loc.start or order.scope.kind != kind) { + p.panic("Expected scope ({s}, {d}) in {s}, found scope ({s}, {d})", .{ kind, loc.start, p.source.path.pretty, order.scope.kind, order.loc.start }); + } - // Sanity-check that the scopes generated by the first and second passes match - if (order.loc.start != loc.start or order.scope.kind != kind) { - p.panic("Expected scope ({s}, {d}) in {s}, found scope ({s}, {d})", .{ kind, loc.start, p.source.path.pretty, order.scope.kind, order.loc.start }); - } + p.current_scope = order.scope; - p.current_scope = order.scope; + try p.scopes_for_current_part.append(order.scope); + } - try p.scopes_for_current_part.append(order.scope); - } + pub fn pushScopeForParsePass(p: *P, kind: js_ast.Scope.Kind, loc: logger.Loc) !usize { + debugl("<pushScopeForParsePass>"); + defer debugl("</pushScopeForParsePass>"); + var parent: *Scope = p.current_scope; - pub fn pushScopeForParsePass(p: *P, kind: js_ast.Scope.Kind, loc: logger.Loc) !usize { - debugl("<pushScopeForParsePass>"); - defer debugl("</pushScopeForParsePass>"); - var parent: *Scope = p.current_scope; - - var scope = try p.allocator.create(Scope); - scope.* = Scope{ - .members = @TypeOf(scope.members).init(p.allocator), - .children = @TypeOf(scope.children).init( - p.allocator, - ), - .generated = @TypeOf(scope.generated).init(p.allocator), - .kind = kind, - .label_ref = null, - .parent = parent, - }; + var scope = try p.allocator.create(Scope); + scope.* = Scope{ + .members = @TypeOf(scope.members).init(p.allocator), + .children = @TypeOf(scope.children).init( + p.allocator, + ), + .generated = @TypeOf(scope.generated).init(p.allocator), + .kind = kind, + .label_ref = null, + .parent = parent, + }; - try parent.children.append(scope); - scope.strict_mode = parent.strict_mode; + try parent.children.append(scope); + scope.strict_mode = parent.strict_mode; - p.current_scope = scope; + p.current_scope = scope; - // Enforce that scope locations are strictly increasing to help catch bugs - // where the pushed scopes are mistmatched between the first and second passes - if (std.builtin.mode != std.builtin.Mode.ReleaseFast and p.scopes_in_order.items.len > 0) { - var last_i = p.scopes_in_order.items.len - 1; - while (p.scopes_in_order.items[last_i] == null and last_i > 0) { - last_i -= 1; - } + // Enforce that scope locations are strictly increasing to help catch bugs + // where the pushed scopes are mistmatched between the first and second passes + if (std.builtin.mode != std.builtin.Mode.ReleaseFast and p.scopes_in_order.items.len > 0) { + var last_i = p.scopes_in_order.items.len - 1; + while (p.scopes_in_order.items[last_i] == null and last_i > 0) { + last_i -= 1; + } - if (p.scopes_in_order.items[last_i]) |prev_scope| { - if (prev_scope.loc.start >= loc.start) { - p.panic("Scope location {d} must be greater than {d}", .{ loc.start, prev_scope.loc.start }); + if (p.scopes_in_order.items[last_i]) |prev_scope| { + if (prev_scope.loc.start >= loc.start) { + p.panic("Scope location {d} must be greater than {d}", .{ loc.start, prev_scope.loc.start }); + } } } - } - // Copy down function arguments into the function body scope. That way we get - // errors if a statement in the function body tries to re-declare any of the - // arguments. - if (kind == js_ast.Scope.Kind.function_body) { - assert(parent.kind == js_ast.Scope.Kind.function_args); + // Copy down function arguments into the function body scope. That way we get + // errors if a statement in the function body tries to re-declare any of the + // arguments. + if (kind == js_ast.Scope.Kind.function_body) { + assert(parent.kind == js_ast.Scope.Kind.function_args); - var iter = scope.parent.?.members.iterator(); - while (iter.next()) |entry| { - // // Don't copy down the optional function expression name. Re-declaring - // // the name of a function expression is allowed. - const adjacent_symbols = p.symbols.items[entry.value.ref.inner_index]; - if (adjacent_symbols.kind != .hoisted_function) { - try scope.members.put(entry.key, entry.value); + var iter = scope.parent.?.members.iterator(); + while (iter.next()) |entry| { + // // Don't copy down the optional function expression name. Re-declaring + // // the name of a function expression is allowed. + const adjacent_symbols = p.symbols.items[entry.value.ref.inner_index]; + if (adjacent_symbols.kind != .hoisted_function) { + try scope.members.put(entry.key, entry.value); + } } } + + // Remember the length in case we call popAndDiscardScope() later + const scope_index = p.scopes_in_order.items.len; + try p.scopes_in_order.append(p.allocator, ScopeOrder{ .loc = loc, .scope = scope }); + // Output.print("\nLoc: {d}\n", .{loc.start}); + return scope_index; } - // Remember the length in case we call popAndDiscardScope() later - const scope_index = p.scopes_in_order.items.len; - try p.scopes_in_order.append(p.allocator, ScopeOrder{ .loc = loc, .scope = scope }); - // Output.print("\nLoc: {d}\n", .{loc.start}); - return scope_index; - } + // Note: do not write to "p.log" in this function. Any errors due to conversion + // from expression to binding should be written to "invalidLog" instead. That + // way we can potentially keep this as an expression if it turns out it's not + // needed as a binding after all. + pub fn convertExprToBinding(p: *P, expr: ExprNodeIndex, invalid_loc: *LocList) ?Binding { + switch (expr.data) { + .e_missing => { + return null; + }, + .e_identifier => |ex| { + return p.b(B.Identifier{ .ref = ex.ref }, expr.loc); + }, + .e_array => |ex| { + if (ex.comma_after_spread) |spread| { + invalid_loc.append(spread) catch unreachable; + } - // Note: do not write to "p.log" in this function. Any errors due to conversion - // from expression to binding should be written to "invalidLog" instead. That - // way we can potentially keep this as an expression if it turns out it's not - // needed as a binding after all. - pub fn convertExprToBinding(p: *P, expr: ExprNodeIndex, invalid_loc: *LocList) ?Binding { - switch (expr.data) { - .e_missing => { - return null; - }, - .e_identifier => |ex| { - return p.b(B.Identifier{ .ref = ex.ref }, expr.loc); - }, - .e_array => |ex| { - if (ex.comma_after_spread) |spread| { - invalid_loc.append(spread) catch unreachable; - } + if (ex.is_parenthesized) { + invalid_loc.append(p.source.rangeOfOperatorBefore(expr.loc, "(").loc) catch unreachable; + } - if (ex.is_parenthesized) { - invalid_loc.append(p.source.rangeOfOperatorBefore(expr.loc, "(").loc) catch unreachable; - } + // p.markSyntaxFeature(Destructing) + var items = List(js_ast.ArrayBinding).init(p.allocator); + var is_spread = true; + for (ex.items) |_, i| { + var item = ex.items[i]; + var _expr = item; + if (@as(Expr.Tag, item.data) == .e_spread) { + is_spread = true; + item = item.getSpread().value; + } + const res = p.convertExprToBindingAndInitializer(&item, invalid_loc, is_spread); + items.append(js_ast.ArrayBinding{ .binding = res.binding orelse unreachable, .default_value = res.override_expr }) catch unreachable; + } - // p.markSyntaxFeature(Destructing) - var items = List(js_ast.ArrayBinding).init(p.allocator); - var is_spread = true; - for (ex.items) |_, i| { - var item = ex.items[i]; - var _expr = item; - if (@as(Expr.Tag, item.data) == .e_spread) { - is_spread = true; - item = item.getSpread().value; + return p.b(B.Array{ + .items = items.toOwnedSlice(), + .has_spread = ex.comma_after_spread != null, + .is_single_line = ex.is_single_line, + }, expr.loc); + }, + .e_object => |ex| { + if (ex.comma_after_spread) |sp| { + invalid_loc.append(sp) catch unreachable; } - const res = p.convertExprToBindingAndInitializer(&item, invalid_loc, is_spread); - items.append(js_ast.ArrayBinding{ .binding = res.binding orelse unreachable, .default_value = res.override_expr }) catch unreachable; - } - return p.b(B.Array{ - .items = items.toOwnedSlice(), - .has_spread = ex.comma_after_spread != null, - .is_single_line = ex.is_single_line, - }, expr.loc); - }, - .e_object => |ex| { - if (ex.comma_after_spread) |sp| { - invalid_loc.append(sp) catch unreachable; - } + if (ex.is_parenthesized) { + invalid_loc.append(p.source.rangeOfOperatorBefore(expr.loc, "(").loc) catch unreachable; + } + // p.markSyntaxFeature(compat.Destructuring, p.source.RangeOfOperatorAfter(expr.Loc, "{")) - if (ex.is_parenthesized) { - invalid_loc.append(p.source.rangeOfOperatorBefore(expr.loc, "(").loc) catch unreachable; - } - // p.markSyntaxFeature(compat.Destructuring, p.source.RangeOfOperatorAfter(expr.Loc, "{")) + var properties = List(B.Property).init(p.allocator); + for (ex.properties) |item| { + if (item.flags.is_method or item.kind == .get or item.kind == .set) { + invalid_loc.append(item.key.?.loc) catch unreachable; + continue; + } + var value = &(item.value orelse unreachable); + const tup = p.convertExprToBindingAndInitializer(value, invalid_loc, false); + const initializer = tup.expr orelse item.initializer; - var properties = List(B.Property).init(p.allocator); - for (ex.properties) |item| { - if (item.flags.is_method or item.kind == .get or item.kind == .set) { - invalid_loc.append(item.key.?.loc) catch unreachable; - continue; - } - var value = &(item.value orelse unreachable); - const tup = p.convertExprToBindingAndInitializer(value, invalid_loc, false); - const initializer = tup.expr orelse item.initializer; + properties.append(B.Property{ + .flags = Flags.Property{ + .is_spread = item.kind == .spread or item.flags.is_spread, + .is_computed = item.flags.is_computed, + }, - properties.append(B.Property{ - .flags = Flags.Property{ - .is_spread = item.kind == .spread or item.flags.is_spread, - .is_computed = item.flags.is_computed, - }, + .key = item.key orelse p.panic("Internal error: Expected {s} to have a key.", .{item}), + .value = tup.binding orelse p.panic("Internal error: Expected {s} to have a binding.", .{tup}), + .default_value = initializer, + }) catch unreachable; + } - .key = item.key orelse p.panic("Internal error: Expected {s} to have a key.", .{item}), - .value = tup.binding orelse p.panic("Internal error: Expected {s} to have a binding.", .{tup}), - .default_value = initializer, - }) catch unreachable; - } + return p.b(B.Object{ + .properties = properties.toOwnedSlice(), + .is_single_line = ex.is_single_line, + }, expr.loc); + }, + else => { + invalid_loc.append(expr.loc) catch unreachable; + return null; + }, + } - return p.b(B.Object{ - .properties = properties.toOwnedSlice(), - .is_single_line = ex.is_single_line, - }, expr.loc); - }, - else => { - invalid_loc.append(expr.loc) catch unreachable; - return null; - }, + return null; } - return null; - } + pub fn convertExprToBindingAndInitializer(p: *P, _expr: *ExprNodeIndex, invalid_log: *LocList, is_spread: bool) ExprBindingTuple { + var initializer: ?ExprNodeIndex = null; + var expr = _expr; + var override: ?ExprNodeIndex = null; + // zig syntax is sometimes painful + switch (expr.*.data) { + .e_binary => |bin| { + if (bin.op == .bin_assign) { + initializer = bin.right; + expr = &bin.left; + } + }, + else => {}, + } - pub fn convertExprToBindingAndInitializer(p: *P, _expr: *ExprNodeIndex, invalid_log: *LocList, is_spread: bool) ExprBindingTuple { - var initializer: ?ExprNodeIndex = null; - var expr = _expr; - var override: ?ExprNodeIndex = null; - // zig syntax is sometimes painful - switch (expr.*.data) { - .e_binary => |bin| { - if (bin.op == .bin_assign) { - initializer = bin.right; - expr = &bin.left; + var bind = p.convertExprToBinding(expr.*, invalid_log); + if (initializer) |initial| { + const equalsRange = p.source.rangeOfOperatorBefore(initial.loc, "="); + if (is_spread) { + p.log.addRangeError(p.source, equalsRange, "A rest argument cannot have a default initializer") catch unreachable; + } else { + // p.markSyntaxFeature(); } - }, - else => {}, + } + return ExprBindingTuple{ .binding = bind, .expr = initializer }; } - var bind = p.convertExprToBinding(expr.*, invalid_log); - if (initializer) |initial| { - const equalsRange = p.source.rangeOfOperatorBefore(initial.loc, "="); - if (is_spread) { - p.log.addRangeError(p.source, equalsRange, "A rest argument cannot have a default initializer") catch unreachable; - } else { - // p.markSyntaxFeature(); - } + pub fn forbidLexicalDecl(p: *P, loc: logger.Loc) !void { + try p.log.addRangeError(p.source, p.lexer.range(), "Cannot use a declaration in a single-statement context"); } - return ExprBindingTuple{ .binding = bind, .expr = initializer }; - } - pub fn forbidLexicalDecl(p: *P, loc: logger.Loc) !void { - try p.log.addRangeError(p.source, p.lexer.range(), "Cannot use a declaration in a single-statement context"); - } + pub fn logExprErrors(p: *P, errors: *DeferredErrors) void { + if (errors.invalid_expr_default_value) |r| { + p.log.addRangeError( + p.source, + r, + "Unexpected \"=\"", + ) catch unreachable; + } - pub fn logExprErrors(p: *P, errors: *DeferredErrors) void { - if (errors.invalid_expr_default_value) |r| { - p.log.addRangeError( - p.source, - r, - "Unexpected \"=\"", - ) catch unreachable; - } + if (errors.invalid_expr_after_question) |r| { + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Unexpected {s}", .{p.source.contents[r.loc.i()..r.endI()]}) catch unreachable; + } - if (errors.invalid_expr_after_question) |r| { - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Unexpected {s}", .{p.source.contents[r.loc.i()..r.endI()]}) catch unreachable; + // if (errors.array_spread_feature) |err| { + // p.markSyntaxFeature(compat.ArraySpread, errors.arraySpreadFeature) + // } } - // if (errors.array_spread_feature) |err| { - // p.markSyntaxFeature(compat.ArraySpread, errors.arraySpreadFeature) - // } - } + // This assumes the "function" token has already been parsed - // This assumes the "function" token has already been parsed + pub fn parseFnStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions, asyncRange: ?logger.Range) !Stmt { + const is_generator = p.lexer.token == T.t_asterisk; + const is_async = asyncRange != null; - pub fn parseFnStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions, asyncRange: ?logger.Range) !Stmt { - const is_generator = p.lexer.token == T.t_asterisk; - const is_async = asyncRange != null; + if (is_generator) { + // p.markSyntaxFeature(compat.Generator, p.lexer.Range()) + try p.lexer.next(); + } else if (is_async) { + // p.markLoweredSyntaxFeature(compat.AsyncAwait, asyncRange, compat.Generator) + } - if (is_generator) { - // p.markSyntaxFeature(compat.Generator, p.lexer.Range()) - try p.lexer.next(); - } else if (is_async) { - // p.markLoweredSyntaxFeature(compat.AsyncAwait, asyncRange, compat.Generator) - } + switch (opts.lexical_decl) { + .forbid => { + try p.forbidLexicalDecl(loc); + }, - switch (opts.lexical_decl) { - .forbid => { - try p.forbidLexicalDecl(loc); - }, + // Allow certain function statements in certain single-statement contexts + .allow_fn_inside_if, .allow_fn_inside_label => { + if (opts.is_typescript_declare or is_generator or is_async) { + try p.forbidLexicalDecl(loc); + } + }, + else => {}, + } - // Allow certain function statements in certain single-statement contexts - .allow_fn_inside_if, .allow_fn_inside_label => { - if (opts.is_typescript_declare or is_generator or is_async) { - try p.forbidLexicalDecl(loc); - } - }, - else => {}, - } + var name: ?js_ast.LocRef = null; + var nameText: string = ""; - var name: ?js_ast.LocRef = null; - var nameText: string = ""; + // The name is optional for "export default function() {}" pseudo-statements + if (!opts.is_name_optional or p.lexer.token == T.t_identifier) { + var nameLoc = p.lexer.loc(); + nameText = p.lexer.identifier; + try p.lexer.expect(T.t_identifier); + // Difference + const ref = try p.newSymbol(Symbol.Kind.other, nameText); + name = js_ast.LocRef{ + .loc = nameLoc, + .ref = ref, + }; + } - // The name is optional for "export default function() {}" pseudo-statements - if (!opts.is_name_optional or p.lexer.token == T.t_identifier) { - var nameLoc = p.lexer.loc(); - nameText = p.lexer.identifier; - try p.lexer.expect(T.t_identifier); - // Difference - const ref = try p.newSymbol(Symbol.Kind.other, nameText); - name = js_ast.LocRef{ - .loc = nameLoc, - .ref = ref, - }; - } + // Even anonymous functions can have TypeScript type parameters + if (is_typescript_enabled) { + try p.skipTypeScriptTypeParameters(); + } - // Even anonymous functions can have TypeScript type parameters - if (p.options.ts) { - try p.skipTypeScriptTypeParameters(); - } + // Introduce a fake block scope for function declarations inside if statements + var ifStmtScopeIndex: usize = 0; + var hasIfScope = opts.lexical_decl == .allow_fn_inside_if; + if (hasIfScope) { + ifStmtScopeIndex = try p.pushScopeForParsePass(js_ast.Scope.Kind.block, loc); + } - // Introduce a fake block scope for function declarations inside if statements - var ifStmtScopeIndex: usize = 0; - var hasIfScope = opts.lexical_decl == .allow_fn_inside_if; - if (hasIfScope) { - ifStmtScopeIndex = try p.pushScopeForParsePass(js_ast.Scope.Kind.block, loc); - } + var scopeIndex = try p.pushScopeForParsePass(js_ast.Scope.Kind.function_args, p.lexer.loc()); + var func = try p.parseFn(name, FnOrArrowDataParse{ + .async_range = asyncRange orelse logger.Range.None, + .has_async_range = asyncRange != null, + .allow_await = if (is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, + .allow_yield = if (is_generator) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, + .is_typescript_declare = opts.is_typescript_declare, - var scopeIndex = try p.pushScopeForParsePass(js_ast.Scope.Kind.function_args, p.lexer.loc()); - var func = try p.parseFn(name, FnOrArrowDataParse{ - .async_range = asyncRange orelse logger.Range.None, - .has_async_range = asyncRange != null, - .allow_await = if (is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, - .allow_yield = if (is_generator) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, - .is_typescript_declare = opts.is_typescript_declare, + // Only allow omitting the body if we're parsing TypeScript + .allow_missing_body_for_type_script = is_typescript_enabled, + }); - // Only allow omitting the body if we're parsing TypeScript - .allow_missing_body_for_type_script = p.options.ts, - }); + // Don't output anything if it's just a forward declaration of a function + if (opts.is_typescript_declare or func.flags.is_forward_declaration) { + p.popAndDiscardScope(scopeIndex); - // Don't output anything if it's just a forward declaration of a function - if (opts.is_typescript_declare or func.flags.is_forward_declaration) { - p.popAndDiscardScope(scopeIndex); + // Balance the fake block scope introduced above + if (hasIfScope) { + p.popScope(); + } - // Balance the fake block scope introduced above - if (hasIfScope) { - p.popScope(); - } + if (opts.is_typescript_declare and opts.is_namespace_scope and opts.is_export) { + p.has_non_local_export_declare_inside_namespace = true; + } - if (opts.is_typescript_declare and opts.is_namespace_scope and opts.is_export) { - p.has_non_local_export_declare_inside_namespace = true; + return p.s(S.TypeScript{}, loc); } - return p.s(S.TypeScript{}, loc); - } + p.popScope(); - p.popScope(); + // Only declare the function after we know if it had a body or not. Otherwise + // TypeScript code such as this will double-declare the symbol: + // + // function foo(): void; + // function foo(): void {} + // + if (name) |*name_| { + const kind = if (is_generator or is_async) Symbol.Kind.generator_or_async_function else Symbol.Kind.hoisted_function; + name_.ref = try p.declareSymbol(kind, name_.loc, nameText); + func.name = name_.*; + } - // Only declare the function after we know if it had a body or not. Otherwise - // TypeScript code such as this will double-declare the symbol: - // - // function foo(): void; - // function foo(): void {} - // - if (name) |*name_| { - const kind = if (is_generator or is_async) Symbol.Kind.generator_or_async_function else Symbol.Kind.hoisted_function; - name_.ref = try p.declareSymbol(kind, name_.loc, nameText); - func.name = name_.*; - } + func.flags.has_if_scope = hasIfScope; + func.flags.is_export = opts.is_export; - func.flags.has_if_scope = hasIfScope; - func.flags.is_export = opts.is_export; + // Balance the fake block scope introduced above + if (hasIfScope) { + p.popScope(); + } - // Balance the fake block scope introduced above - if (hasIfScope) { - p.popScope(); + return p.s(S.Function{ + .func = func, + }, func.open_parens_loc); } - return p.s(S.Function{ - .func = func, - }, func.open_parens_loc); - } + pub fn popAndDiscardScope(p: *P, scope_index: usize) void { + // Move up to the parent scope + var to_discard = p.current_scope; + var parent = to_discard.parent orelse unreachable; - pub fn popAndDiscardScope(p: *P, scope_index: usize) void { - // Move up to the parent scope - var to_discard = p.current_scope; - var parent = to_discard.parent orelse unreachable; + p.current_scope = parent; - p.current_scope = parent; + // Truncate the scope order where we started to pretend we never saw this scope + p.scopes_in_order.shrinkRetainingCapacity(scope_index); - // Truncate the scope order where we started to pretend we never saw this scope - p.scopes_in_order.shrinkRetainingCapacity(scope_index); + var children = parent.children; + // Remove the last child from the parent scope + var last = children.items.len - 1; + if (children.items[last] != to_discard) { + p.panic("Internal error", .{}); + } - var children = parent.children; - // Remove the last child from the parent scope - var last = children.items.len - 1; - if (children.items[last] != to_discard) { - p.panic("Internal error", .{}); + _ = children.popOrNull(); } - _ = children.popOrNull(); - } + pub fn parseFn(p: *P, name: ?js_ast.LocRef, opts: FnOrArrowDataParse) anyerror!G.Fn { + // if data.allowAwait and data.allowYield { + // p.markSyntaxFeature(compat.AsyncGenerator, data.asyncRange) + // } - pub fn parseFn(p: *P, name: ?js_ast.LocRef, opts: FnOrArrowDataParse) anyerror!G.Fn { - // if data.allowAwait and data.allowYield { - // p.markSyntaxFeature(compat.AsyncGenerator, data.asyncRange) - // } + var func = G.Fn{ + .name = name, - var func = G.Fn{ - .name = name, + .flags = Flags.Function{ + .has_rest_arg = false, + .is_async = opts.allow_await == .allow_expr, + .is_generator = opts.allow_yield == .allow_expr, + }, - .flags = Flags.Function{ - .has_rest_arg = false, - .is_async = opts.allow_await == .allow_expr, - .is_generator = opts.allow_yield == .allow_expr, - }, + .arguments_ref = null, + .open_parens_loc = p.lexer.loc(), + }; + try p.lexer.expect(T.t_open_paren); + + // Await and yield are not allowed in function arguments + var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); + + p.fn_or_arrow_data_parse.allow_await = if (opts.allow_await == .allow_expr) AwaitOrYield.forbid_all else AwaitOrYield.allow_ident; + p.fn_or_arrow_data_parse.allow_yield = if (opts.allow_yield == .allow_expr) AwaitOrYield.forbid_all else AwaitOrYield.allow_ident; + // If "super()" is allowed in the body, it's allowed in the arguments + p.fn_or_arrow_data_parse.allow_super_call = opts.allow_super_call; + var args = List(G.Arg).init(p.allocator); + while (p.lexer.token != T.t_close_paren) { + // Skip over "this" type annotations + if (is_typescript_enabled and p.lexer.token == T.t_this) { + try p.lexer.next(); + if (p.lexer.token == T.t_colon) { + try p.lexer.next(); + try p.skipTypeScriptType(js_ast.Op.Level.lowest); + } + if (p.lexer.token != T.t_comma) { + break; + } - .arguments_ref = null, - .open_parens_loc = p.lexer.loc(), - }; - try p.lexer.expect(T.t_open_paren); - - // Await and yield are not allowed in function arguments - var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); - - p.fn_or_arrow_data_parse.allow_await = if (opts.allow_await == .allow_expr) AwaitOrYield.forbid_all else AwaitOrYield.allow_ident; - p.fn_or_arrow_data_parse.allow_yield = if (opts.allow_yield == .allow_expr) AwaitOrYield.forbid_all else AwaitOrYield.allow_ident; - // If "super()" is allowed in the body, it's allowed in the arguments - p.fn_or_arrow_data_parse.allow_super_call = opts.allow_super_call; - var args = List(G.Arg).init(p.allocator); - while (p.lexer.token != T.t_close_paren) { - // Skip over "this" type annotations - if (p.options.ts and p.lexer.token == T.t_this) { - try p.lexer.next(); - if (p.lexer.token == T.t_colon) { try p.lexer.next(); - try p.skipTypeScriptType(js_ast.Op.Level.lowest); + continue; } - if (p.lexer.token != T.t_comma) { - break; + + var ts_decorators: []ExprNodeIndex = &([_]ExprNodeIndex{}); + if (opts.allow_ts_decorators) { + ts_decorators = try p.parseTypeScriptDecorators(); } - try p.lexer.next(); - continue; - } + if (!func.flags.has_rest_arg and p.lexer.token == T.t_dot_dot_dot) { + // p.markSyntaxFeature + try p.lexer.next(); + func.flags.has_rest_arg = true; + } - var ts_decorators: []ExprNodeIndex = &([_]ExprNodeIndex{}); - if (opts.allow_ts_decorators) { - ts_decorators = try p.parseTypeScriptDecorators(); - } + var is_typescript_ctor_field = false; + var is_identifier = p.lexer.token == T.t_identifier; + var text = p.lexer.identifier; + var arg = try p.parseBinding(); - if (!func.flags.has_rest_arg and p.lexer.token == T.t_dot_dot_dot) { - // p.markSyntaxFeature - try p.lexer.next(); - func.flags.has_rest_arg = true; - } + if (is_typescript_enabled) { + if (is_identifier and opts.is_constructor) { + // Skip over TypeScript accessibility modifiers, which turn this argument + // into a class field when used inside a class constructor. This is known + // as a "parameter property" in TypeScript. + while (true) { + switch (p.lexer.token) { + .t_identifier, .t_open_brace, .t_open_bracket => { + if (!js_lexer.TypeScriptAccessibilityModifier.has(p.lexer.identifier)) { + break; + } - var is_typescript_ctor_field = false; - var is_identifier = p.lexer.token == T.t_identifier; - var text = p.lexer.identifier; - var arg = try p.parseBinding(); + is_typescript_ctor_field = true; - if (p.options.ts) { - if (is_identifier and opts.is_constructor) { - // Skip over TypeScript accessibility modifiers, which turn this argument - // into a class field when used inside a class constructor. This is known - // as a "parameter property" in TypeScript. - while (true) { - switch (p.lexer.token) { - .t_identifier, .t_open_brace, .t_open_bracket => { - if (!js_lexer.TypeScriptAccessibilityModifier.has(p.lexer.identifier)) { - break; - } + // TypeScript requires an identifier binding + if (p.lexer.token != .t_identifier) { + try p.lexer.expect(.t_identifier); + } + text = p.lexer.identifier; - is_typescript_ctor_field = true; + // Re-parse the binding (the current binding is the TypeScript keyword) + arg = try p.parseBinding(); + }, + else => { + break; + }, + } + } + } - // TypeScript requires an identifier binding - if (p.lexer.token != .t_identifier) { - try p.lexer.expect(.t_identifier); - } - text = p.lexer.identifier; + // "function foo(a?) {}" + if (p.lexer.token == .t_question) { + try p.lexer.next(); + } - // Re-parse the binding (the current binding is the TypeScript keyword) - arg = try p.parseBinding(); - }, - else => { - break; - }, - } + // "function foo(a: any) {}" + if (p.lexer.token == .t_colon) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); } } - // "function foo(a?) {}" - if (p.lexer.token == .t_question) { - try p.lexer.next(); - } + var parseStmtOpts = ParseStatementOptions{}; + p.declareBinding(.hoisted, &arg, &parseStmtOpts) catch unreachable; - // "function foo(a: any) {}" - if (p.lexer.token == .t_colon) { + var default_value: ?ExprNodeIndex = null; + if (!func.flags.has_rest_arg and p.lexer.token == .t_equals) { + // p.markSyntaxFeature try p.lexer.next(); - try p.skipTypeScriptType(.lowest); + default_value = try p.parseExpr(.comma); } - } - var parseStmtOpts = ParseStatementOptions{}; - p.declareBinding(.hoisted, &arg, &parseStmtOpts) catch unreachable; - - var default_value: ?ExprNodeIndex = null; - if (!func.flags.has_rest_arg and p.lexer.token == .t_equals) { - // p.markSyntaxFeature - try p.lexer.next(); - default_value = try p.parseExpr(.comma); - } + args.append(G.Arg{ + .ts_decorators = ts_decorators, + .binding = arg, + .default = default_value, - args.append(G.Arg{ - .ts_decorators = ts_decorators, - .binding = arg, - .default = default_value, + // We need to track this because it affects code generation + .is_typescript_ctor_field = is_typescript_ctor_field, + }) catch unreachable; - // We need to track this because it affects code generation - .is_typescript_ctor_field = is_typescript_ctor_field, - }) catch unreachable; + if (p.lexer.token != .t_comma) { + break; + } - if (p.lexer.token != .t_comma) { - break; - } + if (func.flags.has_rest_arg) { + // JavaScript does not allow a comma after a rest argument + if (opts.is_typescript_declare) { + // TypeScript does allow a comma after a rest argument in a "declare" context + try p.lexer.next(); + } else { + try p.lexer.expect(.t_close_paren); + } - if (func.flags.has_rest_arg) { - // JavaScript does not allow a comma after a rest argument - if (opts.is_typescript_declare) { - // TypeScript does allow a comma after a rest argument in a "declare" context - try p.lexer.next(); - } else { - try p.lexer.expect(.t_close_paren); + break; } - break; + try p.lexer.next(); + } + if (args.items.len > 0) { + func.args = args.toOwnedSlice(); } - try p.lexer.next(); - } - if (args.items.len > 0) { - func.args = args.toOwnedSlice(); - } + // Reserve the special name "arguments" in this scope. This ensures that it + // shadows any variable called "arguments" in any parent scopes. But only do + // this if it wasn't already declared above because arguments are allowed to + // be called "arguments", in which case the real "arguments" is inaccessible. + if (!p.current_scope.members.contains("arguments")) { + func.arguments_ref = p.declareSymbol(.arguments, func.open_parens_loc, "arguments") catch unreachable; + p.symbols.items[func.arguments_ref.?.inner_index].must_not_be_renamed = true; + } - // Reserve the special name "arguments" in this scope. This ensures that it - // shadows any variable called "arguments" in any parent scopes. But only do - // this if it wasn't already declared above because arguments are allowed to - // be called "arguments", in which case the real "arguments" is inaccessible. - if (!p.current_scope.members.contains("arguments")) { - func.arguments_ref = p.declareSymbol(.arguments, func.open_parens_loc, "arguments") catch unreachable; - p.symbols.items[func.arguments_ref.?.inner_index].must_not_be_renamed = true; - } + try p.lexer.expect(.t_close_paren); + p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); - try p.lexer.expect(.t_close_paren); - p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); + // "function foo(): any {}" + if (is_typescript_enabled and p.lexer.token == .t_colon) { + try p.lexer.next(); + try p.skipTypescriptReturnType(); + } - // "function foo(): any {}" - if (p.options.ts and p.lexer.token == .t_colon) { - try p.lexer.next(); - try p.skipTypescriptReturnType(); - } + // "function foo(): any;" + if (opts.allow_missing_body_for_type_script and p.lexer.token != .t_open_brace) { + try p.lexer.expectOrInsertSemicolon(); + func.flags.is_forward_declaration = true; + return func; + } + var tempOpts = opts; + func.body = try p.parseFnBody(&tempOpts); - // "function foo(): any;" - if (opts.allow_missing_body_for_type_script and p.lexer.token != .t_open_brace) { - try p.lexer.expectOrInsertSemicolon(); - func.flags.is_forward_declaration = true; return func; } - var tempOpts = opts; - func.body = try p.parseFnBody(&tempOpts); - return func; - } + // pub fn parseBinding(p: *P) - // pub fn parseBinding(p: *P) + pub fn skipTypescriptReturnType(p: *P) anyerror!void { + try p.skipTypeScriptTypeWithOpts(.lowest, .{ .is_return_type = true }); + } - pub fn skipTypescriptReturnType(p: *P) anyerror!void { - try p.skipTypeScriptTypeWithOpts(.lowest, .{ .is_return_type = true }); - } + pub fn parseTypeScriptDecorators(p: *P) ![]ExprNodeIndex { + if (!is_typescript_enabled) { + return &([_]ExprNodeIndex{}); + } - pub fn parseTypeScriptDecorators(p: *P) ![]ExprNodeIndex { - if (!p.options.ts) { - return &([_]ExprNodeIndex{}); - } + var decorators = List(ExprNodeIndex).init(p.allocator); + while (p.lexer.token == T.t_at) { + try p.lexer.next(); - var decorators = List(ExprNodeIndex).init(p.allocator); - while (p.lexer.token == T.t_at) { - try p.lexer.next(); + // Parse a new/call expression with "exprFlagTSDecorator" so we ignore + // EIndex expressions, since they may be part of a computed property: + // + // class Foo { + // @foo ['computed']() {} + // } + // + // This matches the behavior of the TypeScript compiler. + try decorators.append(try p.parseExprWithFlags(.new, Expr.EFlags.ts_decorator)); + } - // Parse a new/call expression with "exprFlagTSDecorator" so we ignore - // EIndex expressions, since they may be part of a computed property: - // - // class Foo { - // @foo ['computed']() {} - // } - // - // This matches the behavior of the TypeScript compiler. - try decorators.append(try p.parseExprWithFlags(.new, Expr.EFlags.ts_decorator)); + return decorators.toOwnedSlice(); } - return decorators.toOwnedSlice(); - } - - pub const TypeScript = struct { - // This function is taken from the official TypeScript compiler source code: - // https://github.com/microsoft/TypeScript/blob/master/src/compiler/parser.ts - pub fn canFollowTypeArgumentsInExpression(p: *P) bool { - switch (p.lexer.token) { - // These are the only tokens can legally follow a type argument list. So we - // definitely want to treat them as type arg lists. - .t_open_paren, // foo<x>( - .t_no_substitution_template_literal, // foo<T> `...` - // foo<T> `...${100}...` - .t_template_head, - => { - return true; - }, - // These cases can't legally follow a type arg list. However, they're not - // legal expressions either. The user is probably in the middle of a - // generic type. So treat it as such. - .t_dot, // foo<x>. - .t_close_paren, // foo<x>) - .t_close_bracket, // foo<x>] - .t_colon, // foo<x>: - .t_semicolon, // foo<x>; - .t_question, // foo<x>? - .t_equals_equals, // foo<x> == - .t_equals_equals_equals, // foo<x> === - .t_exclamation_equals, // foo<x> != - .t_exclamation_equals_equals, // foo<x> !== - .t_ampersand_ampersand, // foo<x> && - .t_bar_bar, // foo<x> || - .t_question_question, // foo<x> ?? - .t_caret, // foo<x> ^ - .t_ampersand, // foo<x> & - .t_bar, // foo<x> | - .t_close_brace, // foo<x> } - .t_end_of_file, // foo<x> - => { - return true; - }, + pub const TypeScript = struct { + // This function is taken from the official TypeScript compiler source code: + // https://github.com/microsoft/TypeScript/blob/master/src/compiler/parser.ts + pub fn canFollowTypeArgumentsInExpression(p: *P) bool { + switch (p.lexer.token) { + // These are the only tokens can legally follow a type argument list. So we + // definitely want to treat them as type arg lists. + .t_open_paren, // foo<x>( + .t_no_substitution_template_literal, // foo<T> `...` + // foo<T> `...${100}...` + .t_template_head, + => { + return true; + }, + // These cases can't legally follow a type arg list. However, they're not + // legal expressions either. The user is probably in the middle of a + // generic type. So treat it as such. + .t_dot, // foo<x>. + .t_close_paren, // foo<x>) + .t_close_bracket, // foo<x>] + .t_colon, // foo<x>: + .t_semicolon, // foo<x>; + .t_question, // foo<x>? + .t_equals_equals, // foo<x> == + .t_equals_equals_equals, // foo<x> === + .t_exclamation_equals, // foo<x> != + .t_exclamation_equals_equals, // foo<x> !== + .t_ampersand_ampersand, // foo<x> && + .t_bar_bar, // foo<x> || + .t_question_question, // foo<x> ?? + .t_caret, // foo<x> ^ + .t_ampersand, // foo<x> & + .t_bar, // foo<x> | + .t_close_brace, // foo<x> } + .t_end_of_file, // foo<x> + => { + return true; + }, - // We don't want to treat these as type arguments. Otherwise we'll parse - // this as an invocation expression. Instead, we want to parse out the - // expression in isolation from the type arguments. - .t_comma, // foo<x>, - .t_open_brace, // foo<x> { - => { - return false; - }, - else => { - // Anything else treat as an expression - return false; - }, + // We don't want to treat these as type arguments. Otherwise we'll parse + // this as an invocation expression. Instead, we want to parse out the + // expression in isolation from the type arguments. + .t_comma, // foo<x>, + .t_open_brace, // foo<x> { + => { + return false; + }, + else => { + // Anything else treat as an expression + return false; + }, + } } - } - pub const Identifier = struct { - pub const StmtIdentifier = enum { - s_type, + pub const Identifier = struct { + pub const StmtIdentifier = enum { + s_type, - s_namespace, + s_namespace, - s_abstract, + s_abstract, - s_module, + s_module, - s_interface, + s_interface, - s_declare, - }; - pub fn forStr(str: string) ?StmtIdentifier { - switch (str.len) { - "type".len => { - return if (std.mem.readIntNative(u32, str[0..4]) == std.mem.readIntNative(u32, "type")) .s_type else null; - }, - "interface".len => { - if (strings.eqlComptime(str, "interface")) { - return .s_interface; - } else if (strings.eqlComptime(str, "namespace")) { - return .s_namespace; - } else { - return null; - } - }, - "abstract".len => { - if (strings.eqlComptime(str, "abstract")) { - return .s_abstract; - } else { - return null; - } - }, - "declare".len => { - if (strings.eqlComptime(str, "declare")) { - return .s_declare; - } else { - return null; - } - }, - "module".len => { - if (strings.eqlComptime(str, "module")) { - return .s_module; - } else { + s_declare, + }; + pub fn forStr(str: string) ?StmtIdentifier { + switch (str.len) { + "type".len => { + return if (std.mem.readIntNative(u32, str[0..4]) == std.mem.readIntNative(u32, "type")) .s_type else null; + }, + "interface".len => { + if (strings.eqlComptime(str, "interface")) { + return .s_interface; + } else if (strings.eqlComptime(str, "namespace")) { + return .s_namespace; + } else { + return null; + } + }, + "abstract".len => { + if (strings.eqlComptime(str, "abstract")) { + return .s_abstract; + } else { + return null; + } + }, + "declare".len => { + if (strings.eqlComptime(str, "declare")) { + return .s_declare; + } else { + return null; + } + }, + "module".len => { + if (strings.eqlComptime(str, "module")) { + return .s_module; + } else { + return null; + } + }, + else => { return null; - } - }, - else => { - return null; - }, - } - } - pub const IMap = std.ComptimeStringMap(Kind, .{ - .{ "unique", .unique }, - .{ "abstract", .abstract }, - .{ "asserts", .asserts }, - .{ "keyof", .prefix }, - .{ "readonly", .prefix }, - .{ "infer", .prefix }, - .{ "any", .primitive }, - .{ "never", .primitive }, - .{ "unknown", .primitive }, - .{ "undefined", .primitive }, - .{ "object", .primitive }, - .{ "number", .primitive }, - .{ "string", .primitive }, - .{ "boolean", .primitive }, - .{ "bigint", .primitive }, - .{ "symbol", .primitive }, - }); - pub const Kind = enum { - normal, - unique, - abstract, - asserts, - prefix, - primitive, + }, + } + } + pub const IMap = std.ComptimeStringMap(Kind, .{ + .{ "unique", .unique }, + .{ "abstract", .abstract }, + .{ "asserts", .asserts }, + .{ "keyof", .prefix }, + .{ "readonly", .prefix }, + .{ "infer", .prefix }, + .{ "any", .primitive }, + .{ "never", .primitive }, + .{ "unknown", .primitive }, + .{ "undefined", .primitive }, + .{ "object", .primitive }, + .{ "number", .primitive }, + .{ "string", .primitive }, + .{ "boolean", .primitive }, + .{ "bigint", .primitive }, + .{ "symbol", .primitive }, + }); + pub const Kind = enum { + normal, + unique, + abstract, + asserts, + prefix, + primitive, + }; }; - }; - pub const SkipTypeOptions = struct { - is_return_type: bool = false, + pub const SkipTypeOptions = struct { + is_return_type: bool = false, + }; }; - }; - pub fn skipTypeScriptType(p: *P, level: js_ast.Op.Level) anyerror!void { - try p.skipTypeScriptTypeWithOpts(level, .{}); - } + pub fn skipTypeScriptType(p: *P, level: js_ast.Op.Level) anyerror!void { + try p.skipTypeScriptTypeWithOpts(level, .{}); + } - pub fn skipTypeScriptBinding(p: *P) anyerror!void { - switch (p.lexer.token) { - .t_identifier, .t_this => { - try p.lexer.next(); - }, - .t_open_bracket => { - try p.lexer.next(); + pub fn skipTypeScriptBinding(p: *P) anyerror!void { + switch (p.lexer.token) { + .t_identifier, .t_this => { + try p.lexer.next(); + }, + .t_open_bracket => { + try p.lexer.next(); - // "[, , a]" + // "[, , a]" - while (p.lexer.token == .t_comma) { - try p.lexer.next(); - } - // "[a, b]" - while (p.lexer.token != .t_close_bracket) { - try p.skipTypeScriptBinding(); + while (p.lexer.token == .t_comma) { + try p.lexer.next(); + } + // "[a, b]" + while (p.lexer.token != .t_close_bracket) { + try p.skipTypeScriptBinding(); - if (p.lexer.token != .t_comma) { - break; + if (p.lexer.token != .t_comma) { + break; + } + try p.lexer.next(); } + + try p.lexer.expect(.t_close_bracket); + }, + .t_open_brace => { try p.lexer.next(); - } - try p.lexer.expect(.t_close_bracket); - }, - .t_open_brace => { - try p.lexer.next(); + while (p.lexer.token != .t_close_brace) { + var found_identifier = false; - while (p.lexer.token != .t_close_brace) { - var found_identifier = false; + switch (p.lexer.token) { + .t_identifier => { + found_identifier = true; + try p.lexer.next(); + }, - switch (p.lexer.token) { - .t_identifier => { - found_identifier = true; - try p.lexer.next(); - }, + // "{1: y}" + // "{'x': y}" + .t_string_literal, .t_numeric_literal => { + try p.lexer.next(); + }, - // "{1: y}" - // "{'x': y}" - .t_string_literal, .t_numeric_literal => { - try p.lexer.next(); - }, + else => { + if (p.lexer.isIdentifierOrKeyword()) { + // "{if: x}" + try p.lexer.next(); + } else { + try p.lexer.unexpected(); + return error.Backtrack; + } + }, + } - else => { - if (p.lexer.isIdentifierOrKeyword()) { - // "{if: x}" - try p.lexer.next(); - } else { - try p.lexer.unexpected(); - return error.Backtrack; - } - }, - } + if (p.lexer.token == .t_colon or !found_identifier) { + try p.lexer.expect(.t_colon); + try p.skipTypeScriptBinding(); + } - if (p.lexer.token == .t_colon or !found_identifier) { - try p.lexer.expect(.t_colon); - try p.skipTypeScriptBinding(); - } + if (p.lexer.token != .t_comma) { + break; + } - if (p.lexer.token != .t_comma) { - break; + try p.lexer.next(); } + try p.lexer.expect(.t_close_brace); + }, + else => { + // try p.lexer.unexpected(); + return error.Backtrack; + }, + } + } + + pub fn skipTypescriptFnArgs(p: *P) anyerror!void { + try p.lexer.expect(.t_open_paren); + + while (p.lexer.token != .t_close_paren) { + // "(...a)" + if (p.lexer.token == .t_dot_dot_dot) { try p.lexer.next(); } - try p.lexer.expect(.t_close_brace); - }, - else => { - // try p.lexer.unexpected(); - return error.Backtrack; - }, - } - } - - pub fn skipTypescriptFnArgs(p: *P) anyerror!void { - try p.lexer.expect(.t_open_paren); + try p.skipTypeScriptBinding(); - while (p.lexer.token != .t_close_paren) { - // "(...a)" - if (p.lexer.token == .t_dot_dot_dot) { - try p.lexer.next(); - } + // "(a?)" + if (p.lexer.token == .t_question) { + try p.lexer.next(); + } - try p.skipTypeScriptBinding(); + // "(a: any)" + if (p.lexer.token == .t_colon) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + } - // "(a?)" - if (p.lexer.token == .t_question) { - try p.lexer.next(); - } + // "(a, b)" + if (p.lexer.token != .t_comma) { + break; + } - // "(a: any)" - if (p.lexer.token == .t_colon) { try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - } - - // "(a, b)" - if (p.lexer.token != .t_comma) { - break; } - try p.lexer.next(); - } - - try p.lexer.expect(.t_close_paren); - } - - // This is a spot where the TypeScript grammar is highly ambiguous. Here are - // some cases that are valid: - // - // let x = (y: any): (() => {}) => { }; - // let x = (y: any): () => {} => { }; - // let x = (y: any): (y) => {} => { }; - // let x = (y: any): (y[]) => {}; - // let x = (y: any): (a | b) => {}; - // - // Here are some cases that aren't valid: - // - // let x = (y: any): (y) => {}; - // let x = (y: any): (y) => {return 0}; - // let x = (y: any): asserts y is (y) => {}; - // - pub fn skipTypeScriptParenOrFnType(p: *P) anyerror!void { - if (p.trySkipTypeScriptArrowArgsWithBacktracking()) { - try p.skipTypescriptReturnType(); - } else { - try p.lexer.expect(.t_open_paren); - try p.skipTypeScriptType(.lowest); try p.lexer.expect(.t_close_paren); } - } - pub fn skipTypeScriptTypeWithOpts(p: *P, level: js_ast.Op.Level, opts: TypeScript.SkipTypeOptions) anyerror!void { - while (true) { - switch (p.lexer.token) { - .t_numeric_literal, - .t_big_integer_literal, - .t_string_literal, - .t_no_substitution_template_literal, - .t_true, - .t_false, - .t_null, - .t_void, - .t_const, - => { - try p.lexer.next(); - }, + // This is a spot where the TypeScript grammar is highly ambiguous. Here are + // some cases that are valid: + // + // let x = (y: any): (() => {}) => { }; + // let x = (y: any): () => {} => { }; + // let x = (y: any): (y) => {} => { }; + // let x = (y: any): (y[]) => {}; + // let x = (y: any): (a | b) => {}; + // + // Here are some cases that aren't valid: + // + // let x = (y: any): (y) => {}; + // let x = (y: any): (y) => {return 0}; + // let x = (y: any): asserts y is (y) => {}; + // + pub fn skipTypeScriptParenOrFnType(p: *P) anyerror!void { + if (p.trySkipTypeScriptArrowArgsWithBacktracking()) { + try p.skipTypescriptReturnType(); + } else { + try p.lexer.expect(.t_open_paren); + try p.skipTypeScriptType(.lowest); + try p.lexer.expect(.t_close_paren); + } + } - .t_this => { - try p.lexer.next(); + pub fn skipTypeScriptTypeWithOpts(p: *P, level: js_ast.Op.Level, opts: TypeScript.SkipTypeOptions) anyerror!void { + if (!is_typescript_enabled) { + unreachable; + } - // "function check(): this is boolean" - if (p.lexer.isContextualKeyword("is") and !p.lexer.has_newline_before) { + while (true) { + switch (p.lexer.token) { + .t_numeric_literal, + .t_big_integer_literal, + .t_string_literal, + .t_no_substitution_template_literal, + .t_true, + .t_false, + .t_null, + .t_void, + .t_const, + => { try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - return; - } - }, - .t_minus => { - // "-123" - // "-123n" - try p.lexer.next(); + }, - if (p.lexer.token == .t_big_integer_literal) { + .t_this => { try p.lexer.next(); - } else { - try p.lexer.expect(.t_numeric_literal); - } - }, - .t_ampersand, .t_bar => { - // Support things like "type Foo = | A | B" and "type Foo = & A & B" - try p.lexer.next(); - continue; - }, - .t_import => { - // "import('fs')" - try p.lexer.next(); - try p.lexer.expect(.t_open_paren); - try p.lexer.expect(.t_string_literal); - try p.lexer.expect(.t_close_paren); - }, - .t_new => { - // "new () => Foo" - // "new <T>() => Foo<T>" - try p.lexer.next(); - try p.skipTypeScriptTypeParameters(); - try p.skipTypeScriptParenOrFnType(); - }, - .t_less_than => { - // "<T>() => Foo<T>" - try p.skipTypeScriptTypeParameters(); - try p.skipTypeScriptParenOrFnType(); - }, - .t_open_paren => { - // "(number | string)" - try p.skipTypeScriptParenOrFnType(); - }, - .t_identifier => { - const kind = TypeScript.Identifier.IMap.get(p.lexer.identifier) orelse .normal; - if (kind == .prefix) { + // "function check(): this is boolean" + if (p.lexer.isContextualKeyword("is") and !p.lexer.has_newline_before) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + return; + } + }, + .t_minus => { + // "-123" + // "-123n" try p.lexer.next(); - try p.skipTypeScriptType(.prefix); - break; - } - var check_type_parameters = true; + if (p.lexer.token == .t_big_integer_literal) { + try p.lexer.next(); + } else { + try p.lexer.expect(.t_numeric_literal); + } + }, + .t_ampersand, .t_bar => { + // Support things like "type Foo = | A | B" and "type Foo = & A & B" + try p.lexer.next(); + continue; + }, + .t_import => { + // "import('fs')" + try p.lexer.next(); + try p.lexer.expect(.t_open_paren); + try p.lexer.expect(.t_string_literal); + try p.lexer.expect(.t_close_paren); + }, + .t_new => { + // "new () => Foo" + // "new <T>() => Foo<T>" + try p.lexer.next(); + try p.skipTypeScriptTypeParameters(); + try p.skipTypeScriptParenOrFnType(); + }, + .t_less_than => { + // "<T>() => Foo<T>" + try p.skipTypeScriptTypeParameters(); + try p.skipTypeScriptParenOrFnType(); + }, + .t_open_paren => { + // "(number | string)" + try p.skipTypeScriptParenOrFnType(); + }, + .t_identifier => { + const kind = TypeScript.Identifier.IMap.get(p.lexer.identifier) orelse .normal; - switch (kind) { - .unique => { + if (kind == .prefix) { try p.lexer.next(); + try p.skipTypeScriptType(.prefix); + break; + } - // "let foo: unique symbol" + var check_type_parameters = true; - if (p.lexer.isContextualKeyword("symbol")) { + switch (kind) { + .unique => { try p.lexer.next(); - break; - } - }, - .abstract => { - try p.lexer.next(); - // "let foo: abstract new () => {}" added in TypeScript 4.2 - if (p.lexer.token == .t_new) { - continue; - } - }, - .asserts => { - try p.lexer.next(); + // "let foo: unique symbol" - // "function assert(x: boolean): asserts x" - // "function assert(x: boolean): asserts x is boolean" + if (p.lexer.isContextualKeyword("symbol")) { + try p.lexer.next(); + break; + } + }, + .abstract => { + try p.lexer.next(); - if (opts.is_return_type and !p.lexer.has_newline_before and (p.lexer.token == .t_identifier or p.lexer.token == .t_this)) { + // "let foo: abstract new () => {}" added in TypeScript 4.2 + if (p.lexer.token == .t_new) { + continue; + } + }, + .asserts => { try p.lexer.next(); - } - }, - .primitive => { - try p.lexer.next(); - check_type_parameters = false; - }, - else => { - try p.lexer.next(); - }, - } - // "function assert(x: any): x is boolean" + // "function assert(x: boolean): asserts x" + // "function assert(x: boolean): asserts x is boolean" + + if (opts.is_return_type and !p.lexer.has_newline_before and (p.lexer.token == .t_identifier or p.lexer.token == .t_this)) { + try p.lexer.next(); + } + }, + .primitive => { + try p.lexer.next(); + check_type_parameters = false; + }, + else => { + try p.lexer.next(); + }, + } - if (p.lexer.isContextualKeyword("is") and !p.lexer.has_newline_before) { + // "function assert(x: any): x is boolean" + + if (p.lexer.isContextualKeyword("is") and !p.lexer.has_newline_before) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + return; + } + + // "let foo: any \n <number>foo" must not become a single type + if (check_type_parameters and !p.lexer.has_newline_before) { + _ = try p.skipTypeScriptTypeArguments(false); + } + }, + .t_typeof => { try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - return; - } + if (p.lexer.token == .t_import) { + // "typeof import('fs')" + continue; + } else { + // "typeof x" + // "typeof x.y" - // "let foo: any \n <number>foo" must not become a single type - if (check_type_parameters and !p.lexer.has_newline_before) { - _ = try p.skipTypeScriptTypeArguments(false); - } - }, - .t_typeof => { - try p.lexer.next(); - if (p.lexer.token == .t_import) { - // "typeof import('fs')" - continue; - } else { - // "typeof x" - // "typeof x.y" + while (true) { + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expected(.t_identifier); + } - while (true) { - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expected(.t_identifier); + try p.lexer.next(); + if (p.lexer.token != .t_dot) { + break; + } + + try p.lexer.next(); } + } + }, + .t_open_bracket => { + // "[number, string]" + // "[first: number, second: string]" + try p.lexer.next(); - try p.lexer.next(); - if (p.lexer.token != .t_dot) { + while (p.lexer.token != .t_close_bracket) { + if (p.lexer.token == .t_dot_dot_dot) { + try p.lexer.next(); + } + try p.skipTypeScriptType(.lowest); + if (p.lexer.token == .t_question) { + try p.lexer.next(); + } + if (p.lexer.token == .t_colon) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + } + if (p.lexer.token != .t_comma) { break; } - try p.lexer.next(); } - } - }, - .t_open_bracket => { - // "[number, string]" - // "[first: number, second: string]" - try p.lexer.next(); + try p.lexer.expect(.t_close_bracket); + }, + .t_open_brace => { + try p.skipTypeScriptObjectType(); + }, + .t_template_head => { + // "`${'a' | 'b'}-${'c' | 'd'}`" - while (p.lexer.token != .t_close_bracket) { - if (p.lexer.token == .t_dot_dot_dot) { - try p.lexer.next(); - } - try p.skipTypeScriptType(.lowest); - if (p.lexer.token == .t_question) { - try p.lexer.next(); - } - if (p.lexer.token == .t_colon) { + while (true) { try p.lexer.next(); try p.skipTypeScriptType(.lowest); + try p.lexer.rescanCloseBraceAsTemplateToken(); + + if (p.lexer.token == .t_template_tail) { + try p.lexer.next(); + break; + } } - if (p.lexer.token != .t_comma) { - break; + }, + + else => { + try p.lexer.unexpected(); + return error.Backtrack; + }, + } + break; + } + + while (true) { + switch (p.lexer.token) { + .t_bar => { + if (level.gte(.bitwise_or)) { + return; } try p.lexer.next(); - } - try p.lexer.expect(.t_close_bracket); - }, - .t_open_brace => { - try p.skipTypeScriptObjectType(); - }, - .t_template_head => { - // "`${'a' | 'b'}-${'c' | 'd'}`" + try p.skipTypeScriptType(.bitwise_or); + }, + .t_ampersand => { + if (level.gte(.bitwise_and)) { + return; + } - while (true) { try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - try p.lexer.rescanCloseBraceAsTemplateToken(); + try p.skipTypeScriptType(.bitwise_and); + }, + .t_exclamation => { + // A postfix "!" is allowed in JSDoc types in TypeScript, which are only + // present in comments. While it's not valid in a non-comment position, + // it's still parsed and turned into a soft error by the TypeScript + // compiler. It turns out parsing this is important for correctness for + // "as" casts because the "!" token must still be consumed. + if (p.lexer.has_newline_before) { + return; + } - if (p.lexer.token == .t_template_tail) { - try p.lexer.next(); - break; + try p.lexer.next(); + }, + .t_dot => { + try p.lexer.next(); + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); + } + try p.lexer.next(); + _ = try p.skipTypeScriptTypeArguments(false); + }, + .t_open_bracket => { + // "{ ['x']: string \n ['y']: string }" must not become a single type + if (p.lexer.has_newline_before) { + return; + } + try p.lexer.next(); + if (p.lexer.token != .t_close_bracket) { + try p.skipTypeScriptType(.lowest); + } + try p.lexer.expect(.t_close_bracket); + }, + .t_extends => { + // "{ x: number \n extends: boolean }" must not become a single type + if (p.lexer.has_newline_before or level.gte(.conditional)) { + return; } - } - }, - else => { - try p.lexer.unexpected(); - return error.Backtrack; - }, + try p.lexer.next(); + + // The type following "extends" is not permitted to be another conditional type + try p.skipTypeScriptType(.conditional); + try p.lexer.expect(.t_question); + try p.skipTypeScriptType(.lowest); + try p.lexer.expect(.t_colon); + try p.skipTypeScriptType(.lowest); + }, + else => { + return; + }, + } } - break; } + pub fn skipTypeScriptObjectType(p: *P) anyerror!void { + try p.lexer.expect(.t_open_brace); - while (true) { - switch (p.lexer.token) { - .t_bar => { - if (level.gte(.bitwise_or)) { - return; - } + while (p.lexer.token != .t_close_brace) { + // "{ -readonly [K in keyof T]: T[K] }" + // "{ +readonly [K in keyof T]: T[K] }" + if (p.lexer.token == .t_plus or p.lexer.token == .t_minus) { try p.lexer.next(); - try p.skipTypeScriptType(.bitwise_or); - }, - .t_ampersand => { - if (level.gte(.bitwise_and)) { - return; - } + } + // Skip over modifiers and the property identifier + var found_key = false; + while (p.lexer.isIdentifierOrKeyword() or p.lexer.token == .t_string_literal or p.lexer.token == .t_numeric_literal) { try p.lexer.next(); - try p.skipTypeScriptType(.bitwise_and); - }, - .t_exclamation => { - // A postfix "!" is allowed in JSDoc types in TypeScript, which are only - // present in comments. While it's not valid in a non-comment position, - // it's still parsed and turned into a soft error by the TypeScript - // compiler. It turns out parsing this is important for correctness for - // "as" casts because the "!" token must still be consumed. - if (p.lexer.has_newline_before) { - return; - } + found_key = true; + } + if (p.lexer.token == .t_open_bracket) { + // Index signature or computed property try p.lexer.next(); - }, - .t_dot => { - try p.lexer.next(); - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); - } - try p.lexer.next(); - _ = try p.skipTypeScriptTypeArguments(false); - }, - .t_open_bracket => { - // "{ ['x']: string \n ['y']: string }" must not become a single type - if (p.lexer.has_newline_before) { - return; - } - try p.lexer.next(); - if (p.lexer.token != .t_close_bracket) { - try p.skipTypeScriptType(.lowest); - } - try p.lexer.expect(.t_close_bracket); - }, - .t_extends => { - // "{ x: number \n extends: boolean }" must not become a single type - if (p.lexer.has_newline_before or level.gte(.conditional)) { - return; + try p.skipTypeScriptType(.lowest); + + // "{ [key: string]: number }" + // "{ readonly [K in keyof T]: T[K] }" + switch (p.lexer.token) { + .t_colon => { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + }, + .t_in => { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + if (p.lexer.isContextualKeyword("as")) { + // "{ [K in keyof T as `get-${K}`]: T[K] }" + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + } + }, + else => {}, } - try p.lexer.next(); + try p.lexer.expect(.t_close_bracket); - // The type following "extends" is not permitted to be another conditional type - try p.skipTypeScriptType(.conditional); - try p.lexer.expect(.t_question); - try p.skipTypeScriptType(.lowest); - try p.lexer.expect(.t_colon); - try p.skipTypeScriptType(.lowest); - }, - else => { - return; - }, - } - } - } - pub fn skipTypeScriptObjectType(p: *P) anyerror!void { - try p.lexer.expect(.t_open_brace); + // "{ [K in keyof T]+?: T[K] }" + // "{ [K in keyof T]-?: T[K] }" + switch (p.lexer.token) { + .t_plus, .t_minus => { + try p.lexer.next(); + }, + else => {}, + } - while (p.lexer.token != .t_close_brace) { - // "{ -readonly [K in keyof T]: T[K] }" - // "{ +readonly [K in keyof T]: T[K] }" - if (p.lexer.token == .t_plus or p.lexer.token == .t_minus) { - try p.lexer.next(); - } + found_key = true; + } - // Skip over modifiers and the property identifier - var found_key = false; - while (p.lexer.isIdentifierOrKeyword() or p.lexer.token == .t_string_literal or p.lexer.token == .t_numeric_literal) { - try p.lexer.next(); - found_key = true; - } + // "?" indicates an optional property + // "!" indicates an initialization assertion + if (found_key and (p.lexer.token == .t_question or p.lexer.token == .t_exclamation)) { + try p.lexer.next(); + } - if (p.lexer.token == .t_open_bracket) { - // Index signature or computed property - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); + // Type parameters come right after the optional mark + try p.skipTypeScriptTypeParameters(); - // "{ [key: string]: number }" - // "{ readonly [K in keyof T]: T[K] }" switch (p.lexer.token) { .t_colon => { + // Regular property + if (!found_key) { + try p.lexer.expect(.t_identifier); + } + try p.lexer.next(); try p.skipTypeScriptType(.lowest); }, - .t_in => { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - if (p.lexer.isContextualKeyword("as")) { - // "{ [K in keyof T as `get-${K}`]: T[K] }" + .t_open_paren => { + // Method signature + try p.skipTypescriptFnArgs(); + + if (p.lexer.token == .t_colon) { try p.lexer.next(); - try p.skipTypeScriptType(.lowest); + try p.skipTypescriptReturnType(); + } + }, + else => { + if (!found_key) { + try p.lexer.unexpected(); + return error.SyntaxError; } }, - else => {}, } - - try p.lexer.expect(.t_close_bracket); - - // "{ [K in keyof T]+?: T[K] }" - // "{ [K in keyof T]-?: T[K] }" switch (p.lexer.token) { - .t_plus, .t_minus => { + .t_close_brace => {}, + .t_comma, .t_semicolon => { try p.lexer.next(); }, - else => {}, + else => { + if (!p.lexer.has_newline_before) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + }, } - - found_key = true; } + try p.lexer.expect(.t_close_brace); + } - // "?" indicates an optional property - // "!" indicates an initialization assertion - if (found_key and (p.lexer.token == .t_question or p.lexer.token == .t_exclamation)) { + // This is the type parameter declarations that go with other symbol + // declarations (class, function, type, etc.) + pub fn skipTypeScriptTypeParameters(p: *P) anyerror!void { + if (p.lexer.token == .t_less_than) { try p.lexer.next(); - } - - // Type parameters come right after the optional mark - try p.skipTypeScriptTypeParameters(); - switch (p.lexer.token) { - .t_colon => { - // Regular property - if (!found_key) { - try p.lexer.expect(.t_identifier); + while (true) { + try p.lexer.expect(.t_identifier); + // "class Foo<T extends number> {}" + if (p.lexer.token == .t_extends) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); } - - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - }, - .t_open_paren => { - // Method signature - try p.skipTypescriptFnArgs(); - - if (p.lexer.token == .t_colon) { + // "class Foo<T = void> {}" + if (p.lexer.token == .t_equals) { try p.lexer.next(); - try p.skipTypescriptReturnType(); + try p.skipTypeScriptType(.lowest); } - }, - else => { - if (!found_key) { - try p.lexer.unexpected(); - return error.SyntaxError; + + if (p.lexer.token != .t_comma) { + break; } - }, - } - switch (p.lexer.token) { - .t_close_brace => {}, - .t_comma, .t_semicolon => { try p.lexer.next(); - }, - else => { - if (!p.lexer.has_newline_before) { - try p.lexer.unexpected(); - return error.SyntaxError; + if (p.lexer.token == .t_greater_than) { + break; } - }, - } - } - try p.lexer.expect(.t_close_brace); - } - - // This is the type parameter declarations that go with other symbol - // declarations (class, function, type, etc.) - pub fn skipTypeScriptTypeParameters(p: *P) anyerror!void { - if (p.lexer.token == .t_less_than) { - try p.lexer.next(); - - while (true) { - try p.lexer.expect(.t_identifier); - // "class Foo<T extends number> {}" - if (p.lexer.token == .t_extends) { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - } - // "class Foo<T = void> {}" - if (p.lexer.token == .t_equals) { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - } - - if (p.lexer.token != .t_comma) { - break; - } - try p.lexer.next(); - if (p.lexer.token == .t_greater_than) { - break; } + try p.lexer.expectGreaterThan(false); } - try p.lexer.expectGreaterThan(false); } - } - fn createDefaultName(p: *P, loc: logger.Loc) !js_ast.LocRef { - var identifier = try std.fmt.allocPrint(p.allocator, "{s}_default", .{p.source.identifier_name}); + fn createDefaultName(p: *P, loc: logger.Loc) !js_ast.LocRef { + var identifier = try std.fmt.allocPrint(p.allocator, "{s}_default", .{p.source.identifier_name}); - const name = js_ast.LocRef{ .loc = loc, .ref = try p.newSymbol(Symbol.Kind.other, identifier) }; + const name = js_ast.LocRef{ .loc = loc, .ref = try p.newSymbol(Symbol.Kind.other, identifier) }; - var scope = p.current_scope; - - try scope.generated.append(name.ref orelse unreachable); - - return name; - } + var scope = p.current_scope; - pub fn newSymbol(p: *P, kind: Symbol.Kind, identifier: string) !js_ast.Ref { - const inner_index = Ref.toInt(p.symbols.items.len); - try p.symbols.append(Symbol{ - .kind = kind, - .original_name = identifier, - .link = null, - }); + try scope.generated.append(name.ref orelse unreachable); - if (p.options.ts) { - try p.ts_use_counts.append(0); + return name; } - return js_ast.Ref{ - .source_index = Ref.toInt(p.source.index), - .inner_index = inner_index, - }; - } + pub fn newSymbol(p: *P, kind: Symbol.Kind, identifier: string) !js_ast.Ref { + const inner_index = Ref.toInt(p.symbols.items.len); + try p.symbols.append(Symbol{ + .kind = kind, + .original_name = identifier, + .link = null, + }); - pub fn parseLabelName(p: *P) !?js_ast.LocRef { - if (p.lexer.token != .t_identifier or p.lexer.has_newline_before) { - return null; + if (is_typescript_enabled) { + try p.ts_use_counts.append(0); + } + + return js_ast.Ref{ + .source_index = Ref.toInt(p.source.index), + .inner_index = inner_index, + }; } - const name = LocRef{ .loc = p.lexer.loc(), .ref = try p.storeNameInRef(p.lexer.identifier) }; - try p.lexer.next(); - return name; - } + pub fn parseLabelName(p: *P) !?js_ast.LocRef { + if (p.lexer.token != .t_identifier or p.lexer.has_newline_before) { + return null; + } - pub fn parseClassStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) !Stmt { - var name: ?js_ast.LocRef = null; - var class_keyword = p.lexer.range(); - if (p.lexer.token == .t_class) { - //marksyntaxfeature + const name = LocRef{ .loc = p.lexer.loc(), .ref = try p.storeNameInRef(p.lexer.identifier) }; try p.lexer.next(); - } else { - try p.lexer.expected(.t_class); + return name; } - var is_identifier = p.lexer.token == .t_identifier; - var is_strict_modereserved_word = is_identifier and js_lexer.StrictModeReservedWords.has(p.lexer.identifier); + pub fn parseClassStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) !Stmt { + var name: ?js_ast.LocRef = null; + var class_keyword = p.lexer.range(); + if (p.lexer.token == .t_class) { + //marksyntaxfeature + try p.lexer.next(); + } else { + try p.lexer.expected(.t_class); + } - if (!opts.is_name_optional or (is_identifier and !is_strict_modereserved_word)) { - var name_loc = p.lexer.loc(); - var name_text = p.lexer.identifier; - if (is_strict_modereserved_word) { - try p.lexer.unexpected(); - return error.SyntaxError; + var is_identifier = p.lexer.token == .t_identifier; + var is_strict_modereserved_word = is_identifier and js_lexer.StrictModeReservedWords.has(p.lexer.identifier); + + if (!opts.is_name_optional or (is_identifier and !is_strict_modereserved_word)) { + var name_loc = p.lexer.loc(); + var name_text = p.lexer.identifier; + if (is_strict_modereserved_word) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + + try p.lexer.expect(.t_identifier); + name = LocRef{ .loc = name_loc, .ref = null }; + if (!opts.is_typescript_declare) { + (name orelse unreachable).ref = p.declareSymbol(.class, name_loc, name_text) catch unreachable; + } } - try p.lexer.expect(.t_identifier); - name = LocRef{ .loc = name_loc, .ref = null }; - if (!opts.is_typescript_declare) { - (name orelse unreachable).ref = p.declareSymbol(.class, name_loc, name_text) catch unreachable; + // Even anonymous classes can have TypeScript type parameters + if (is_typescript_enabled) { + try p.skipTypeScriptTypeParameters(); + } + var class_opts = ParseClassOptions{ + .allow_ts_decorators = true, + .is_type_script_declare = opts.is_typescript_declare, + }; + if (opts.ts_decorators) |dec| { + class_opts.ts_decorators = dec.values; } - } - // Even anonymous classes can have TypeScript type parameters - if (p.options.ts) { - try p.skipTypeScriptTypeParameters(); - } - var class_opts = ParseClassOptions{ - .allow_ts_decorators = true, - .is_type_script_declare = opts.is_typescript_declare, - }; - if (opts.ts_decorators) |dec| { - class_opts.ts_decorators = dec.values; - } + const scope_index = p.pushScopeForParsePass(.class_name, loc) catch unreachable; + const class = try p.parseClass(class_keyword, name, class_opts); - const scope_index = p.pushScopeForParsePass(.class_name, loc) catch unreachable; - const class = try p.parseClass(class_keyword, name, class_opts); + if (opts.is_typescript_declare) { + p.popAndDiscardScope(scope_index); + if (opts.is_namespace_scope and opts.is_export) { + p.has_non_local_export_declare_inside_namespace = true; + } - if (opts.is_typescript_declare) { - p.popAndDiscardScope(scope_index); - if (opts.is_namespace_scope and opts.is_export) { - p.has_non_local_export_declare_inside_namespace = true; + return p.s(S.TypeScript{}, loc); } - return p.s(S.TypeScript{}, loc); + p.popScope(); + return p.s(S.Class{ + .class = class, + .is_export = opts.is_export, + }, loc); } - p.popScope(); - return p.s(S.Class{ - .class = class, - .is_export = opts.is_export, - }, loc); - } - - pub fn parseStmt(p: *P, opts: *ParseStatementOptions) anyerror!Stmt { - var loc = p.lexer.loc(); - - switch (p.lexer.token) { - .t_semicolon => { - try p.lexer.next(); - return Stmt.empty(); - }, + pub fn parseStmt(p: *P, opts: *ParseStatementOptions) anyerror!Stmt { + var loc = p.lexer.loc(); - .t_export => { - var previousExportKeyword = p.es6_export_keyword; - if (opts.is_module_scope) { - p.es6_export_keyword = p.lexer.range(); - } else if (!opts.is_namespace_scope) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - try p.lexer.next(); + switch (p.lexer.token) { + .t_semicolon => { + try p.lexer.next(); + return Stmt.empty(); + }, - // TypeScript decorators only work on class declarations - // "@decorator export class Foo {}" - // "@decorator export abstract class Foo {}" - // "@decorator export default class Foo {}" - // "@decorator export default abstract class Foo {}" - // "@decorator export declare class Foo {}" - // "@decorator export declare abstract class Foo {}" - if (opts.ts_decorators != null and p.lexer.token != js_lexer.T.t_class and p.lexer.token != js_lexer.T.t_default and !p.lexer.isContextualKeyword("abstract") and !p.lexer.isContextualKeyword("declare")) { - try p.lexer.expected(js_lexer.T.t_class); - } + .t_export => { + var previousExportKeyword = p.es6_export_keyword; + if (opts.is_module_scope) { + p.es6_export_keyword = p.lexer.range(); + } else if (!opts.is_namespace_scope) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + try p.lexer.next(); - switch (p.lexer.token) { - T.t_class, T.t_const, T.t_function, T.t_var => { - opts.is_export = true; - return p.parseStmt(opts); - }, + // TypeScript decorators only work on class declarations + // "@decorator export class Foo {}" + // "@decorator export abstract class Foo {}" + // "@decorator export default class Foo {}" + // "@decorator export default abstract class Foo {}" + // "@decorator export declare class Foo {}" + // "@decorator export declare abstract class Foo {}" + if (opts.ts_decorators != null and p.lexer.token != js_lexer.T.t_class and p.lexer.token != js_lexer.T.t_default and !p.lexer.isContextualKeyword("abstract") and !p.lexer.isContextualKeyword("declare")) { + try p.lexer.expected(js_lexer.T.t_class); + } - T.t_import => { - // "export import foo = bar" - if (p.options.ts and (opts.is_module_scope or opts.is_namespace_scope)) { + switch (p.lexer.token) { + T.t_class, T.t_const, T.t_function, T.t_var => { opts.is_export = true; return p.parseStmt(opts); - } + }, - try p.lexer.unexpected(); - return error.SyntaxError; - }, + T.t_import => { + // "export import foo = bar" + if (is_typescript_enabled and (opts.is_module_scope or opts.is_namespace_scope)) { + opts.is_export = true; + return p.parseStmt(opts); + } - T.t_enum => { - if (!p.options.ts) { try p.lexer.unexpected(); return error.SyntaxError; - } + }, - opts.is_export = true; - return p.parseStmt(opts); - }, + T.t_enum => { + if (!is_typescript_enabled) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - T.t_identifier => { - if (p.lexer.isContextualKeyword("let")) { opts.is_export = true; return p.parseStmt(opts); - } + }, - if (opts.is_typescript_declare and p.lexer.isContextualKeyword("as")) { - // "export as namespace ns;" - try p.lexer.next(); - try p.lexer.expectContextualKeyword("namespace"); - try p.lexer.expect(T.t_identifier); - try p.lexer.expectOrInsertSemicolon(); + T.t_identifier => { + if (p.lexer.isContextualKeyword("let")) { + opts.is_export = true; + return p.parseStmt(opts); + } - return p.s(S.TypeScript{}, loc); - } + if (opts.is_typescript_declare and p.lexer.isContextualKeyword("as")) { + // "export as namespace ns;" + try p.lexer.next(); + try p.lexer.expectContextualKeyword("namespace"); + try p.lexer.expect(T.t_identifier); + try p.lexer.expectOrInsertSemicolon(); - if (p.lexer.isContextualKeyword("async")) { - var asyncRange = p.lexer.range(); - try p.lexer.next(); - if (p.lexer.has_newline_before) { - try p.log.addRangeError(p.source, asyncRange, "Unexpected newline after \"async\""); + return p.s(S.TypeScript{}, loc); } - try p.lexer.expect(T.t_function); - opts.is_export = true; - return try p.parseFnStmt(loc, opts, asyncRange); - } - - if (p.options.ts) { - if (TypeScript.Identifier.forStr(p.lexer.identifier)) |ident| { - switch (ident) { - .s_type => { - // "export type foo = ..." - const type_range = p.lexer.range(); - try p.lexer.next(); - if (p.lexer.has_newline_before) { - try p.log.addErrorFmt(p.source, type_range.end(), p.allocator, "Unexpected newline after \"type\"", .{}); - return error.SynaxError; - } - var skipper = ParseStatementOptions{ .is_module_scope = opts.is_module_scope, .is_export = true }; - try p.skipTypeScriptTypeStmt(&skipper); - return p.s(S.TypeScript{}, loc); - }, - .s_namespace, .s_abstract, .s_module, .s_interface => { - // "export namespace Foo {}" - // "export abstract class Foo {}" - // "export module Foo {}" - // "export interface Foo {}" - opts.is_export = true; - return try p.parseStmt(opts); - }, - .s_declare => { - // "export declare class Foo {}" - opts.is_export = true; - opts.lexical_decl = .allow_all; - opts.is_typescript_declare = true; - return try p.parseStmt(opts); - }, + if (p.lexer.isContextualKeyword("async")) { + var asyncRange = p.lexer.range(); + try p.lexer.next(); + if (p.lexer.has_newline_before) { + try p.log.addRangeError(p.source, asyncRange, "Unexpected newline after \"async\""); } + + try p.lexer.expect(T.t_function); + opts.is_export = true; + return try p.parseFnStmt(loc, opts, asyncRange); } - } - try p.lexer.unexpected(); - return error.SyntaxError; - }, + if (is_typescript_enabled) { + if (TypeScript.Identifier.forStr(p.lexer.identifier)) |ident| { + switch (ident) { + .s_type => { + // "export type foo = ..." + const type_range = p.lexer.range(); + try p.lexer.next(); + if (p.lexer.has_newline_before) { + try p.log.addErrorFmt(p.source, type_range.end(), p.allocator, "Unexpected newline after \"type\"", .{}); + return error.SynaxError; + } + var skipper = ParseStatementOptions{ .is_module_scope = opts.is_module_scope, .is_export = true }; + try p.skipTypeScriptTypeStmt(&skipper); + return p.s(S.TypeScript{}, loc); + }, + .s_namespace, .s_abstract, .s_module, .s_interface => { + // "export namespace Foo {}" + // "export abstract class Foo {}" + // "export module Foo {}" + // "export interface Foo {}" + opts.is_export = true; + return try p.parseStmt(opts); + }, + .s_declare => { + // "export declare class Foo {}" + opts.is_export = true; + opts.lexical_decl = .allow_all; + opts.is_typescript_declare = true; + return try p.parseStmt(opts); + }, + } + } + } - T.t_default => { - if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { try p.lexer.unexpected(); return error.SyntaxError; - } - - var defaultLoc = p.lexer.loc(); - try p.lexer.next(); + }, - // TypeScript decorators only work on class declarations - // "@decorator export default class Foo {}" - // "@decorator export default abstract class Foo {}" - if (opts.ts_decorators != null and p.lexer.token != T.t_class and !p.lexer.isContextualKeyword("abstract")) { - try p.lexer.expected(T.t_class); - } + T.t_default => { + if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - if (p.lexer.isContextualKeyword("async")) { - var async_range = p.lexer.range(); + var defaultLoc = p.lexer.loc(); try p.lexer.next(); - var defaultName: js_ast.LocRef = undefined; - if (p.lexer.token == T.t_function and !p.lexer.has_newline_before) { + + // TypeScript decorators only work on class declarations + // "@decorator export default class Foo {}" + // "@decorator export default abstract class Foo {}" + if (opts.ts_decorators != null and p.lexer.token != T.t_class and !p.lexer.isContextualKeyword("abstract")) { + try p.lexer.expected(T.t_class); + } + + if (p.lexer.isContextualKeyword("async")) { + var async_range = p.lexer.range(); try p.lexer.next(); - var stmtOpts = ParseStatementOptions{ - .is_name_optional = true, - .lexical_decl = .allow_all, - }; - var stmt = try p.parseFnStmt(loc, &stmtOpts, async_range); - if (@as(Stmt.Tag, stmt.data) == .s_type_script) { - // This was just a type annotation - return stmt; - } + var defaultName: js_ast.LocRef = undefined; + if (p.lexer.token == T.t_function and !p.lexer.has_newline_before) { + try p.lexer.next(); + var stmtOpts = ParseStatementOptions{ + .is_name_optional = true, + .lexical_decl = .allow_all, + }; + var stmt = try p.parseFnStmt(loc, &stmtOpts, async_range); + if (@as(Stmt.Tag, stmt.data) == .s_type_script) { + // This was just a type annotation + return stmt; + } - if (stmt.getFunction().func.name) |name| { - defaultName = js_ast.LocRef{ .loc = defaultLoc, .ref = name.ref }; - } else { - defaultName = try p.createDefaultName(defaultLoc); + if (stmt.getFunction().func.name) |name| { + defaultName = js_ast.LocRef{ .loc = defaultLoc, .ref = name.ref }; + } else { + defaultName = try p.createDefaultName(defaultLoc); + } + // this is probably a panic + var value = js_ast.StmtOrExpr{ .stmt = stmt }; + return p.s(S.ExportDefault{ .default_name = defaultName, .value = value }, loc); } + + defaultName = try createDefaultName(p, loc); + + const prefix_expr = try p.parseAsyncPrefixExpr(async_range, Level.comma); + var expr = try p.parseSuffix(prefix_expr, Level.comma, null, Expr.EFlags.none); + try p.lexer.expectOrInsertSemicolon(); // this is probably a panic - var value = js_ast.StmtOrExpr{ .stmt = stmt }; + var value = js_ast.StmtOrExpr{ .expr = expr }; return p.s(S.ExportDefault{ .default_name = defaultName, .value = value }, loc); } - defaultName = try createDefaultName(p, loc); + if (p.lexer.token == .t_function or p.lexer.token == .t_class or p.lexer.isContextualKeyword("interface")) { + var _opts = ParseStatementOptions{ + .ts_decorators = opts.ts_decorators, + .is_name_optional = true, + .lexical_decl = .allow_all, + }; + var stmt = try p.parseStmt(&_opts); + + const default_name: js_ast.LocRef = default_name_getter: { + switch (stmt.data) { + // This was just a type annotation + .s_type_script => { + return stmt; + }, - const prefix_expr = try p.parseAsyncPrefixExpr(async_range, Level.comma); - var expr = try p.parseSuffix(prefix_expr, Level.comma, null, Expr.EFlags.none); - try p.lexer.expectOrInsertSemicolon(); - // this is probably a panic - var value = js_ast.StmtOrExpr{ .expr = expr }; - return p.s(S.ExportDefault{ .default_name = defaultName, .value = value }, loc); - } + .s_function => |func_container| { + if (stmt.getFunction().func.name) |name| { + break :default_name_getter LocRef{ .loc = defaultLoc, .ref = name.ref }; + } else {} + }, + .s_class => |class| { + if (stmt.getClass().class.class_name) |name| { + break :default_name_getter LocRef{ .loc = defaultLoc, .ref = name.ref }; + } else {} + }, + else => {}, + } - if (p.lexer.token == .t_function or p.lexer.token == .t_class or p.lexer.isContextualKeyword("interface")) { - var _opts = ParseStatementOptions{ - .ts_decorators = opts.ts_decorators, - .is_name_optional = true, - .lexical_decl = .allow_all, - }; - var stmt = try p.parseStmt(&_opts); + break :default_name_getter createDefaultName(p, defaultLoc) catch unreachable; + }; - const default_name: js_ast.LocRef = default_name_getter: { - switch (stmt.data) { - // This was just a type annotation - .s_type_script => { - return stmt; - }, + return p.s( + S.ExportDefault{ .default_name = default_name, .value = js_ast.StmtOrExpr{ .stmt = stmt } }, + loc, + ); + } + + const is_identifier = p.lexer.token == .t_identifier; + const name = p.lexer.identifier; + var expr = try p.parseExpr(.comma); + + // Handle the default export of an abstract class in TypeScript + if (is_typescript_enabled and is_identifier and (p.lexer.token == .t_class or opts.ts_decorators != null) and strings.eqlComptime(name, "abstract")) { + switch (expr.data) { + .e_identifier => |ident| { + var stmtOpts = ParseStatementOptions{ + .ts_decorators = opts.ts_decorators, + .is_name_optional = true, + }; + const stmt: Stmt = try p.parseClassStmt(loc, &stmtOpts); + + // Use the statement name if present, since it's a better name + const default_name: js_ast.LocRef = default_name_getter: { + switch (stmt.data) { + // This was just a type annotation + .s_type_script => { + return stmt; + }, + + .s_function => |func_container| { + if (stmt.getFunction().func.name) |_name| { + break :default_name_getter LocRef{ .loc = defaultLoc, .ref = _name.ref }; + } else {} + }, + .s_class => |class| { + if (stmt.getClass().class.class_name) |_name| { + break :default_name_getter LocRef{ .loc = defaultLoc, .ref = _name.ref }; + } else {} + }, + else => {}, + } + + break :default_name_getter createDefaultName(p, defaultLoc) catch unreachable; + }; - .s_function => |func_container| { - if (stmt.getFunction().func.name) |name| { - break :default_name_getter LocRef{ .loc = defaultLoc, .ref = name.ref }; - } else {} + return p.s(S.ExportDefault{ .default_name = default_name, .value = js_ast.StmtOrExpr{ .stmt = stmt } }, loc); }, - .s_class => |class| { - if (stmt.getClass().class.class_name) |name| { - break :default_name_getter LocRef{ .loc = defaultLoc, .ref = name.ref }; - } else {} + else => { + p.panic("internal error: unexpected", .{}); }, - else => {}, } + } - break :default_name_getter createDefaultName(p, defaultLoc) catch unreachable; - }; - - return p.s( - S.ExportDefault{ .default_name = default_name, .value = js_ast.StmtOrExpr{ .stmt = stmt } }, - loc, - ); - } - - const is_identifier = p.lexer.token == .t_identifier; - const name = p.lexer.identifier; - var expr = try p.parseExpr(.comma); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.ExportDefault{ .default_name = createDefaultName(p, loc) catch unreachable, .value = js_ast.StmtOrExpr{ .expr = expr } }, loc); + }, + T.t_asterisk => { + if (!opts.is_module_scope and !(opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - // Handle the default export of an abstract class in TypeScript - if (p.options.ts and is_identifier and (p.lexer.token == .t_class or opts.ts_decorators != null) and strings.eqlComptime(name, "abstract")) { - switch (expr.data) { - .e_identifier => |ident| { - var stmtOpts = ParseStatementOptions{ - .ts_decorators = opts.ts_decorators, - .is_name_optional = true, - }; - const stmt: Stmt = try p.parseClassStmt(loc, &stmtOpts); - - // Use the statement name if present, since it's a better name - const default_name: js_ast.LocRef = default_name_getter: { - switch (stmt.data) { - // This was just a type annotation - .s_type_script => { - return stmt; - }, + try p.lexer.next(); + var namespace_ref: js_ast.Ref = js_ast.Ref.None; + var alias: ?js_ast.G.ExportStarAlias = null; + var path: ParsedPath = undefined; - .s_function => |func_container| { - if (stmt.getFunction().func.name) |_name| { - break :default_name_getter LocRef{ .loc = defaultLoc, .ref = _name.ref }; - } else {} - }, - .s_class => |class| { - if (stmt.getClass().class.class_name) |_name| { - break :default_name_getter LocRef{ .loc = defaultLoc, .ref = _name.ref }; - } else {} - }, - else => {}, - } + if (p.lexer.isContextualKeyword("as")) { + // "export * as ns from 'path'" + try p.lexer.next(); + const name = try p.parseClauseAlias("export"); + namespace_ref = try p.storeNameInRef(name); + alias = G.ExportStarAlias{ .loc = p.lexer.loc(), .original_name = name }; + try p.lexer.next(); + try p.lexer.expectContextualKeyword("from"); + path = try p.parsePath(); + } else { + // "export * from 'path'" + try p.lexer.expectContextualKeyword("from"); + path = try p.parsePath(); + const name = try fs.PathName.init(path.text).nonUniqueNameString(p.allocator); + namespace_ref = try p.storeNameInRef(name); + } - break :default_name_getter createDefaultName(p, defaultLoc) catch unreachable; - }; + var import_record_index = p.addImportRecord( + ImportKind.stmt, + path.loc, + path.text, + // TODO: import assertions + // path.assertions + ); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.ExportStar{ + .namespace_ref = namespace_ref, + .alias = alias, + .import_record_index = import_record_index, + }, loc); + }, + T.t_open_brace => { + if (!opts.is_module_scope and !(opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - return p.s(S.ExportDefault{ .default_name = default_name, .value = js_ast.StmtOrExpr{ .stmt = stmt } }, loc); - }, - else => { - p.panic("internal error: unexpected", .{}); - }, + const export_clause = try p.parseExportClause(); + if (p.lexer.isContextualKeyword("from")) { + try p.lexer.expectContextualKeyword("from"); + const parsedPath = try p.parsePath(); + const import_record_index = p.addImportRecord(.stmt, parsedPath.loc, parsedPath.text); + var path_name = fs.PathName.init(strings.append(p.allocator, "import_", parsedPath.text) catch unreachable); + const namespace_ref = p.storeNameInRef(path_name.nonUniqueNameString(p.allocator) catch unreachable) catch unreachable; + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.ExportFrom{ .items = export_clause.clauses, .is_single_line = export_clause.is_single_line, .namespace_ref = namespace_ref, .import_record_index = import_record_index }, loc); } - } + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.ExportClause{ .items = export_clause.clauses, .is_single_line = export_clause.is_single_line }, loc); + }, + T.t_equals => { + // "export = value;" - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.ExportDefault{ .default_name = createDefaultName(p, loc) catch unreachable, .value = js_ast.StmtOrExpr{ .expr = expr } }, loc); - }, - T.t_asterisk => { - if (!opts.is_module_scope and !(opts.is_namespace_scope or !opts.is_typescript_declare)) { + p.es6_export_keyword = previousExportKeyword; // This wasn't an ESM export statement after all + if (is_typescript_enabled) { + try p.lexer.next(); + var value = try p.parseExpr(.lowest); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.ExportEquals{ .value = value }, loc); + } try p.lexer.unexpected(); return error.SyntaxError; - } - - try p.lexer.next(); - var namespace_ref: js_ast.Ref = js_ast.Ref.None; - var alias: ?js_ast.G.ExportStarAlias = null; - var path: ParsedPath = undefined; - - if (p.lexer.isContextualKeyword("as")) { - // "export * as ns from 'path'" - try p.lexer.next(); - const name = try p.parseClauseAlias("export"); - namespace_ref = try p.storeNameInRef(name); - alias = G.ExportStarAlias{ .loc = p.lexer.loc(), .original_name = name }; - try p.lexer.next(); - try p.lexer.expectContextualKeyword("from"); - path = try p.parsePath(); - } else { - // "export * from 'path'" - try p.lexer.expectContextualKeyword("from"); - path = try p.parsePath(); - const name = try fs.PathName.init(path.text).nonUniqueNameString(p.allocator); - namespace_ref = try p.storeNameInRef(name); - } - - var import_record_index = p.addImportRecord( - ImportKind.stmt, - path.loc, - path.text, - // TODO: import assertions - // path.assertions - ); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.ExportStar{ - .namespace_ref = namespace_ref, - .alias = alias, - .import_record_index = import_record_index, - }, loc); - }, - T.t_open_brace => { - if (!opts.is_module_scope and !(opts.is_namespace_scope or !opts.is_typescript_declare)) { + }, + else => { try p.lexer.unexpected(); return error.SyntaxError; - } - - const export_clause = try p.parseExportClause(); - if (p.lexer.isContextualKeyword("from")) { - try p.lexer.expectContextualKeyword("from"); - const parsedPath = try p.parsePath(); - const import_record_index = p.addImportRecord(.stmt, parsedPath.loc, parsedPath.text); - var path_name = fs.PathName.init(strings.append(p.allocator, "import_", parsedPath.text) catch unreachable); - const namespace_ref = p.storeNameInRef(path_name.nonUniqueNameString(p.allocator) catch unreachable) catch unreachable; - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.ExportFrom{ .items = export_clause.clauses, .is_single_line = export_clause.is_single_line, .namespace_ref = namespace_ref, .import_record_index = import_record_index }, loc); - } - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.ExportClause{ .items = export_clause.clauses, .is_single_line = export_clause.is_single_line }, loc); - }, - T.t_equals => { - // "export = value;" + }, + } + }, - p.es6_export_keyword = previousExportKeyword; // This wasn't an ESM export statement after all - if (p.options.ts) { - try p.lexer.next(); - var value = try p.parseExpr(.lowest); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.ExportEquals{ .value = value }, loc); - } - try p.lexer.unexpected(); - return error.SyntaxError; - }, - else => { + .t_function => { + try p.lexer.next(); + return try p.parseFnStmt(loc, opts, null); + }, + .t_enum => { + if (!is_typescript_enabled) { try p.lexer.unexpected(); return error.SyntaxError; - }, - } - }, + } + return p.parseTypescriptEnumStmt(loc, opts); + }, + .t_at => { + // Parse decorators before class statements, which are potentially exported + if (is_typescript_enabled) { + const scope_index = p.scopes_in_order.items.len; + const ts_decorators = try p.parseTypeScriptDecorators(); - .t_function => { - try p.lexer.next(); - return try p.parseFnStmt(loc, opts, null); - }, - .t_enum => { - if (!p.options.ts) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - return p.parseTypescriptEnumStmt(loc, opts); - }, - .t_at => { - // Parse decorators before class statements, which are potentially exported - if (p.options.ts) { - const scope_index = p.scopes_in_order.items.len; - const ts_decorators = try p.parseTypeScriptDecorators(); - - // If this turns out to be a "declare class" statement, we need to undo the - // scopes that were potentially pushed while parsing the decorator arguments. - // That can look like any one of the following: - // - // "@decorator declare class Foo {}" - // "@decorator declare abstract class Foo {}" - // "@decorator export declare class Foo {}" - // "@decorator export declare abstract class Foo {}" - // - opts.ts_decorators = DeferredTsDecorators{ - .values = ts_decorators, - .scope_index = scope_index, - }; + // If this turns out to be a "declare class" statement, we need to undo the + // scopes that were potentially pushed while parsing the decorator arguments. + // That can look like any one of the following: + // + // "@decorator declare class Foo {}" + // "@decorator declare abstract class Foo {}" + // "@decorator export declare class Foo {}" + // "@decorator export declare abstract class Foo {}" + // + opts.ts_decorators = DeferredTsDecorators{ + .values = ts_decorators, + .scope_index = scope_index, + }; - // "@decorator class Foo {}" - // "@decorator abstract class Foo {}" - // "@decorator declare class Foo {}" - // "@decorator declare abstract class Foo {}" - // "@decorator export class Foo {}" - // "@decorator export abstract class Foo {}" - // "@decorator export declare class Foo {}" - // "@decorator export declare abstract class Foo {}" - // "@decorator export default class Foo {}" - // "@decorator export default abstract class Foo {}" - if (p.lexer.token != .t_class and p.lexer.token != .t_export and !p.lexer.isContextualKeyword("abstract") and !p.lexer.isContextualKeyword("declare")) { - try p.lexer.expected(.t_class); - } + // "@decorator class Foo {}" + // "@decorator abstract class Foo {}" + // "@decorator declare class Foo {}" + // "@decorator declare abstract class Foo {}" + // "@decorator export class Foo {}" + // "@decorator export abstract class Foo {}" + // "@decorator export declare class Foo {}" + // "@decorator export declare abstract class Foo {}" + // "@decorator export default class Foo {}" + // "@decorator export default abstract class Foo {}" + if (p.lexer.token != .t_class and p.lexer.token != .t_export and !p.lexer.isContextualKeyword("abstract") and !p.lexer.isContextualKeyword("declare")) { + try p.lexer.expected(.t_class); + } - return p.parseStmt(opts); - } - // notimpl(); + return p.parseStmt(opts); + } + // notimpl(); - try p.lexer.unexpected(); - return error.SyntaxError; - }, - .t_class => { - if (opts.lexical_decl != .allow_all) { - try p.forbidLexicalDecl(loc); - } + try p.lexer.unexpected(); + return error.SyntaxError; + }, + .t_class => { + if (opts.lexical_decl != .allow_all) { + try p.forbidLexicalDecl(loc); + } - return try p.parseClassStmt(loc, opts); - }, - .t_var => { - try p.lexer.next(); - const decls = try p.parseAndDeclareDecls(.hoisted, opts); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.Local{ .kind = .k_var, .decls = decls, .is_export = opts.is_export }, loc); - }, - .t_const => { - if (opts.lexical_decl != .allow_all) { - try p.forbidLexicalDecl(loc); - } - // p.markSyntaxFeature(compat.Const, p.lexer.Range()) + return try p.parseClassStmt(loc, opts); + }, + .t_var => { + try p.lexer.next(); + const decls = try p.parseAndDeclareDecls(.hoisted, opts); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.Local{ .kind = .k_var, .decls = decls, .is_export = opts.is_export }, loc); + }, + .t_const => { + if (opts.lexical_decl != .allow_all) { + try p.forbidLexicalDecl(loc); + } + // p.markSyntaxFeature(compat.Const, p.lexer.Range()) - try p.lexer.next(); + try p.lexer.next(); - if (p.options.ts and p.lexer.token == T.t_enum) { - return p.parseTypescriptEnumStmt(loc, opts); - } + if (is_typescript_enabled and p.lexer.token == T.t_enum) { + return p.parseTypescriptEnumStmt(loc, opts); + } - const decls = try p.parseAndDeclareDecls(.cconst, opts); - try p.lexer.expectOrInsertSemicolon(); + const decls = try p.parseAndDeclareDecls(.cconst, opts); + try p.lexer.expectOrInsertSemicolon(); - if (!opts.is_typescript_declare) { - try p.requireInitializers(decls); - } + if (!opts.is_typescript_declare) { + try p.requireInitializers(decls); + } - return p.s(S.Local{ .kind = .k_const, .decls = decls, .is_export = opts.is_export }, loc); - }, - .t_if => { - try p.lexer.next(); - try p.lexer.expect(.t_open_paren); - const test_ = try p.parseExpr(.lowest); - try p.lexer.expect(.t_close_paren); - var stmtOpts = ParseStatementOptions{ - .lexical_decl = .allow_fn_inside_if, - }; - const yes = try p.parseStmt(&stmtOpts); - var no: ?Stmt = null; - if (p.lexer.token == .t_else) { + return p.s(S.Local{ .kind = .k_const, .decls = decls, .is_export = opts.is_export }, loc); + }, + .t_if => { try p.lexer.next(); - stmtOpts = ParseStatementOptions{ + try p.lexer.expect(.t_open_paren); + const test_ = try p.parseExpr(.lowest); + try p.lexer.expect(.t_close_paren); + var stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_fn_inside_if, }; - no = try p.parseStmt(&stmtOpts); - } + const yes = try p.parseStmt(&stmtOpts); + var no: ?Stmt = null; + if (p.lexer.token == .t_else) { + try p.lexer.next(); + stmtOpts = ParseStatementOptions{ + .lexical_decl = .allow_fn_inside_if, + }; + no = try p.parseStmt(&stmtOpts); + } - return p.s(S.If{ - .test_ = test_, - .yes = yes, - .no = no, - }, loc); - }, - .t_do => { - try p.lexer.next(); - var stmtOpts = ParseStatementOptions{}; - const body = try p.parseStmt(&stmtOpts); - try p.lexer.expect(.t_while); - try p.lexer.expect(.t_open_paren); - const test_ = try p.parseExpr(.lowest); - try p.lexer.expect(.t_close_paren); + return p.s(S.If{ + .test_ = test_, + .yes = yes, + .no = no, + }, loc); + }, + .t_do => { + try p.lexer.next(); + var stmtOpts = ParseStatementOptions{}; + const body = try p.parseStmt(&stmtOpts); + try p.lexer.expect(.t_while); + try p.lexer.expect(.t_open_paren); + const test_ = try p.parseExpr(.lowest); + try p.lexer.expect(.t_close_paren); - // This is a weird corner case where automatic semicolon insertion applies - // even without a newline present - if (p.lexer.token == .t_semicolon) { + // This is a weird corner case where automatic semicolon insertion applies + // even without a newline present + if (p.lexer.token == .t_semicolon) { + try p.lexer.next(); + } + return p.s(S.DoWhile{ .body = body, .test_ = test_ }, loc); + }, + .t_while => { try p.lexer.next(); - } - return p.s(S.DoWhile{ .body = body, .test_ = test_ }, loc); - }, - .t_while => { - try p.lexer.next(); - try p.lexer.expect(.t_open_paren); - const test_ = try p.parseExpr(.lowest); - try p.lexer.expect(.t_close_paren); + try p.lexer.expect(.t_open_paren); + const test_ = try p.parseExpr(.lowest); + try p.lexer.expect(.t_close_paren); - var stmtOpts = ParseStatementOptions{}; - const body = try p.parseStmt(&stmtOpts); + var stmtOpts = ParseStatementOptions{}; + const body = try p.parseStmt(&stmtOpts); - return p.s(S.While{ - .body = body, - .test_ = test_, - }, loc); - }, - .t_with => { - try p.lexer.next(); - try p.lexer.expect(.t_open_paren); - const test_ = try p.parseExpr(.lowest); - const body_loc = p.lexer.loc(); - try p.lexer.expect(.t_close_paren); - }, - .t_switch => { - try p.lexer.next(); + return p.s(S.While{ + .body = body, + .test_ = test_, + }, loc); + }, + .t_with => { + try p.lexer.next(); + try p.lexer.expect(.t_open_paren); + const test_ = try p.parseExpr(.lowest); + const body_loc = p.lexer.loc(); + try p.lexer.expect(.t_close_paren); + }, + .t_switch => { + try p.lexer.next(); - try p.lexer.expect(.t_open_paren); - const test_ = try p.parseExpr(.lowest); - try p.lexer.expect(.t_close_paren); + try p.lexer.expect(.t_open_paren); + const test_ = try p.parseExpr(.lowest); + try p.lexer.expect(.t_close_paren); - const body_loc = p.lexer.loc(); - _ = try p.pushScopeForParsePass(.block, body_loc); - defer p.popScope(); + const body_loc = p.lexer.loc(); + _ = try p.pushScopeForParsePass(.block, body_loc); + defer p.popScope(); - try p.lexer.expect(.t_open_brace); - var cases = List(js_ast.Case).init(p.allocator); - var foundDefault = false; - var stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; - var value: ?js_ast.Expr = null; - while (p.lexer.token != .t_close_brace) { - var body = List(js_ast.Stmt).init(p.allocator); - value = null; - if (p.lexer.token == .t_default) { - if (foundDefault) { - try p.log.addRangeError(p.source, p.lexer.range(), "Multiple default clauses are not allowed"); - fail(); - } + try p.lexer.expect(.t_open_brace); + var cases = List(js_ast.Case).init(p.allocator); + var foundDefault = false; + var stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; + var value: ?js_ast.Expr = null; + while (p.lexer.token != .t_close_brace) { + var body = List(js_ast.Stmt).init(p.allocator); + value = null; + if (p.lexer.token == .t_default) { + if (foundDefault) { + try p.log.addRangeError(p.source, p.lexer.range(), "Multiple default clauses are not allowed"); + fail(); + } - foundDefault = true; - try p.lexer.next(); - try p.lexer.expect(.t_colon); - } else { - try p.lexer.expect(.t_case); - value = try p.parseExpr(.lowest); - try p.lexer.expect(.t_colon); - } + foundDefault = true; + try p.lexer.next(); + try p.lexer.expect(.t_colon); + } else { + try p.lexer.expect(.t_case); + value = try p.parseExpr(.lowest); + try p.lexer.expect(.t_colon); + } - caseBody: while (true) { - switch (p.lexer.token) { - .t_close_brace, .t_case, .t_default => { - break :caseBody; - }, - else => { - stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; - try body.append(try p.parseStmt(&stmtOpts)); - }, + caseBody: while (true) { + switch (p.lexer.token) { + .t_close_brace, .t_case, .t_default => { + break :caseBody; + }, + else => { + stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; + try body.append(try p.parseStmt(&stmtOpts)); + }, + } } + try cases.append(js_ast.Case{ .value = value, .body = body.toOwnedSlice(), .loc = logger.Loc.Empty }); } - try cases.append(js_ast.Case{ .value = value, .body = body.toOwnedSlice(), .loc = logger.Loc.Empty }); - } - try p.lexer.expect(.t_close_brace); - return p.s(S.Switch{ .test_ = test_, .body_loc = body_loc, .cases = cases.toOwnedSlice() }, loc); - }, - .t_try => { - try p.lexer.next(); - const body_loc = p.lexer.loc(); - try p.lexer.expect(.t_open_brace); - _ = try p.pushScopeForParsePass(.block, loc); - var stmtOpts = ParseStatementOptions{}; - const body = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); - p.popScope(); - try p.lexer.next(); + try p.lexer.expect(.t_close_brace); + return p.s(S.Switch{ .test_ = test_, .body_loc = body_loc, .cases = cases.toOwnedSlice() }, loc); + }, + .t_try => { + try p.lexer.next(); + const body_loc = p.lexer.loc(); + try p.lexer.expect(.t_open_brace); + _ = try p.pushScopeForParsePass(.block, loc); + var stmtOpts = ParseStatementOptions{}; + const body = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); + p.popScope(); + try p.lexer.next(); - var catch_: ?js_ast.Catch = null; - var finally: ?js_ast.Finally = null; + var catch_: ?js_ast.Catch = null; + var finally: ?js_ast.Finally = null; - if (p.lexer.token == .t_catch) { - const catch_loc = p.lexer.loc(); - _ = try p.pushScopeForParsePass(.block, catch_loc); - try p.lexer.next(); - var binding: ?js_ast.Binding = null; + if (p.lexer.token == .t_catch) { + const catch_loc = p.lexer.loc(); + _ = try p.pushScopeForParsePass(.block, catch_loc); + try p.lexer.next(); + var binding: ?js_ast.Binding = null; + + // The catch binding is optional, and can be omitted + // jarred: TIL! + if (p.lexer.token != .t_open_brace) { + try p.lexer.expect(.t_open_paren); + var value = try p.parseBinding(); + + // Skip over types + if (is_typescript_enabled and p.lexer.token == .t_colon) { + try p.lexer.expect(.t_colon); + try p.skipTypeScriptType(.lowest); + } - // The catch binding is optional, and can be omitted - // jarred: TIL! - if (p.lexer.token != .t_open_brace) { - try p.lexer.expect(.t_open_paren); - var value = try p.parseBinding(); + try p.lexer.expect(.t_close_paren); - // Skip over types - if (p.options.ts and p.lexer.token == .t_colon) { - try p.lexer.expect(.t_colon); - try p.skipTypeScriptType(.lowest); + // Bare identifiers are a special case + var kind = Symbol.Kind.other; + switch (value.data) { + .b_identifier => { + kind = .catch_identifier; + }, + else => {}, + } + stmtOpts = ParseStatementOptions{}; + try p.declareBinding(kind, &value, &stmtOpts); + binding = value; } - try p.lexer.expect(.t_close_paren); + try p.lexer.expect(.t_open_brace); + stmtOpts = ParseStatementOptions{}; + const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); + try p.lexer.next(); + catch_ = js_ast.Catch{ + .loc = catch_loc, + .binding = binding, + .body = stmts, + }; + p.popScope(); + } - // Bare identifiers are a special case - var kind = Symbol.Kind.other; - switch (value.data) { - .b_identifier => { - kind = .catch_identifier; - }, - else => {}, - } + if (p.lexer.token == .t_finally or catch_ == null) { + const finally_loc = p.lexer.loc(); + _ = try p.pushScopeForParsePass(.block, finally_loc); + try p.lexer.expect(.t_finally); + try p.lexer.expect(.t_open_brace); stmtOpts = ParseStatementOptions{}; - try p.declareBinding(kind, &value, &stmtOpts); - binding = value; + const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); + try p.lexer.next(); + finally = js_ast.Finally{ .loc = finally_loc, .stmts = stmts }; + p.popScope(); } - try p.lexer.expect(.t_open_brace); - stmtOpts = ParseStatementOptions{}; - const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); - try p.lexer.next(); - catch_ = js_ast.Catch{ - .loc = catch_loc, - .binding = binding, - .body = stmts, - }; - p.popScope(); - } + return p.s( + S.Try{ .body_loc = body_loc, .body = body, .catch_ = catch_, .finally = finally }, + loc, + ); + }, + .t_for => { + _ = try p.pushScopeForParsePass(.block, loc); + defer p.popScope(); - if (p.lexer.token == .t_finally or catch_ == null) { - const finally_loc = p.lexer.loc(); - _ = try p.pushScopeForParsePass(.block, finally_loc); - try p.lexer.expect(.t_finally); - try p.lexer.expect(.t_open_brace); - stmtOpts = ParseStatementOptions{}; - const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); try p.lexer.next(); - finally = js_ast.Finally{ .loc = finally_loc, .stmts = stmts }; - p.popScope(); - } - return p.s( - S.Try{ .body_loc = body_loc, .body = body, .catch_ = catch_, .finally = finally }, - loc, - ); - }, - .t_for => { - _ = try p.pushScopeForParsePass(.block, loc); - defer p.popScope(); + // "for await (let x of y) {}" + var isForAwait = p.lexer.isContextualKeyword("await"); + if (isForAwait) { + const await_range = p.lexer.range(); + if (p.fn_or_arrow_data_parse.allow_await != .allow_expr) { + try p.log.addRangeError(p.source, await_range, "Cannot use \"await\" outside an async function"); + isForAwait = false; + } else { + // TODO: improve error handling here + // didGenerateError := p.markSyntaxFeature(compat.ForAwait, awaitRange) + if (p.fn_or_arrow_data_parse.is_top_level) { + p.top_level_await_keyword = await_range; + // p.markSyntaxFeature(compat.TopLevelAwait, awaitRange) + } + } + try p.lexer.next(); + } - try p.lexer.next(); + try p.lexer.expect(.t_open_paren); - // "for await (let x of y) {}" - var isForAwait = p.lexer.isContextualKeyword("await"); - if (isForAwait) { - const await_range = p.lexer.range(); - if (p.fn_or_arrow_data_parse.allow_await != .allow_expr) { - try p.log.addRangeError(p.source, await_range, "Cannot use \"await\" outside an async function"); - isForAwait = false; - } else { - // TODO: improve error handling here - // didGenerateError := p.markSyntaxFeature(compat.ForAwait, awaitRange) - if (p.fn_or_arrow_data_parse.is_top_level) { - p.top_level_await_keyword = await_range; - // p.markSyntaxFeature(compat.TopLevelAwait, awaitRange) - } + var init_: ?Stmt = null; + var test_: ?Expr = null; + var update: ?Expr = null; + + // "in" expressions aren't allowed here + p.allow_in = false; + + var bad_let_range: ?logger.Range = null; + if (p.lexer.isContextualKeyword("let")) { + bad_let_range = p.lexer.range(); } - try p.lexer.next(); - } - try p.lexer.expect(.t_open_paren); + var decls: []G.Decl = &([_]G.Decl{}); + var init_loc = p.lexer.loc(); + var is_var = false; + switch (p.lexer.token) { + // for (var ) + .t_var => { + is_var = true; + try p.lexer.next(); + var stmtOpts = ParseStatementOptions{}; + decls = try p.parseAndDeclareDecls(.hoisted, &stmtOpts); + init_ = p.s(S.Local{ .kind = .k_var, .decls = decls }, init_loc); + }, + // for (const ) + .t_const => { + try p.lexer.next(); + var stmtOpts = ParseStatementOptions{}; + decls = try p.parseAndDeclareDecls(.cconst, &stmtOpts); + init_ = p.s(S.Local{ .kind = .k_const, .decls = decls }, init_loc); + }, + // for (;) + .t_semicolon => {}, + else => { + var stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; - var init_: ?Stmt = null; - var test_: ?Expr = null; - var update: ?Expr = null; + const res = try p.parseExprOrLetStmt(&stmtOpts); + switch (res.stmt_or_expr) { + .stmt => |stmt| { + bad_let_range = null; + init_ = stmt; + }, + .expr => |expr| { + init_ = p.s(S.SExpr{ + .value = expr, + }, init_loc); + }, + } + }, + } - // "in" expressions aren't allowed here - p.allow_in = false; + // "in" expressions are allowed again + p.allow_in = true; - var bad_let_range: ?logger.Range = null; - if (p.lexer.isContextualKeyword("let")) { - bad_let_range = p.lexer.range(); - } + // Detect for-of loops + if (p.lexer.isContextualKeyword("of") or isForAwait) { + if (bad_let_range) |r| { + try p.log.addRangeError(p.source, r, "\"let\" must be wrapped in parentheses to be used as an expression here"); + fail(); + } - var decls: []G.Decl = &([_]G.Decl{}); - var init_loc = p.lexer.loc(); - var is_var = false; - switch (p.lexer.token) { - // for (var ) - .t_var => { - is_var = true; + if (isForAwait and !p.lexer.isContextualKeyword("of")) { + if (init_) |init_stmt| { + try p.lexer.expectedString("\"of\""); + } else { + try p.lexer.unexpected(); + return error.SyntaxError; + } + } + + try p.forbidInitializers(decls, "of", false); try p.lexer.next(); + const value = try p.parseExpr(.comma); + try p.lexer.expect(.t_close_paren); var stmtOpts = ParseStatementOptions{}; - decls = try p.parseAndDeclareDecls(.hoisted, &stmtOpts); - init_ = p.s(S.Local{ .kind = .k_var, .decls = decls }, init_loc); - }, - // for (const ) - .t_const => { + const body = try p.parseStmt(&stmtOpts); + return p.s(S.ForOf{ .is_await = isForAwait, .init = init_ orelse unreachable, .value = value, .body = body }, loc); + } + + // Detect for-in loops + if (p.lexer.token == .t_in) { + try p.forbidInitializers(decls, "in", false); try p.lexer.next(); + const value = try p.parseExpr(.lowest); + try p.lexer.expect(.t_close_paren); var stmtOpts = ParseStatementOptions{}; - decls = try p.parseAndDeclareDecls(.cconst, &stmtOpts); - init_ = p.s(S.Local{ .kind = .k_const, .decls = decls }, init_loc); - }, - // for (;) - .t_semicolon => {}, - else => { - var stmtOpts = ParseStatementOptions{ .lexical_decl = .allow_all }; + const body = try p.parseStmt(&stmtOpts); + return p.s(S.ForIn{ .init = init_ orelse unreachable, .value = value, .body = body }, loc); + } - const res = try p.parseExprOrLetStmt(&stmtOpts); - switch (res.stmt_or_expr) { - .stmt => |stmt| { - bad_let_range = null; - init_ = stmt; - }, - .expr => |expr| { - init_ = p.s(S.SExpr{ - .value = expr, - }, init_loc); + // Only require "const" statement initializers when we know we're a normal for loop + if (init_) |init_stmt| { + switch (init_stmt.data) { + .s_local => { + if (init_stmt.getLocal().kind == .k_const) { + try p.requireInitializers(decls); + } }, + else => {}, } - }, - } - - // "in" expressions are allowed again - p.allow_in = true; + } - // Detect for-of loops - if (p.lexer.isContextualKeyword("of") or isForAwait) { - if (bad_let_range) |r| { - try p.log.addRangeError(p.source, r, "\"let\" must be wrapped in parentheses to be used as an expression here"); - fail(); + try p.lexer.expect(.t_semicolon); + if (p.lexer.token != .t_semicolon) { + test_ = try p.parseExpr(.lowest); } - if (isForAwait and !p.lexer.isContextualKeyword("of")) { - if (init_) |init_stmt| { - try p.lexer.expectedString("\"of\""); - } else { - try p.lexer.unexpected(); - return error.SyntaxError; - } + try p.lexer.expect(.t_semicolon); + + if (p.lexer.token != .t_close_paren) { + update = try p.parseExpr(.lowest); } - try p.forbidInitializers(decls, "of", false); - try p.lexer.next(); - const value = try p.parseExpr(.comma); try p.lexer.expect(.t_close_paren); var stmtOpts = ParseStatementOptions{}; const body = try p.parseStmt(&stmtOpts); - return p.s(S.ForOf{ .is_await = isForAwait, .init = init_ orelse unreachable, .value = value, .body = body }, loc); - } - - // Detect for-in loops - if (p.lexer.token == .t_in) { - try p.forbidInitializers(decls, "in", false); + return p.s( + S.For{ .init = init_, .test_ = test_, .update = update, .body = body }, + loc, + ); + }, + .t_import => { + const previous_import_keyword = p.es6_import_keyword; + p.es6_import_keyword = p.lexer.range(); try p.lexer.next(); - const value = try p.parseExpr(.lowest); - try p.lexer.expect(.t_close_paren); - var stmtOpts = ParseStatementOptions{}; - const body = try p.parseStmt(&stmtOpts); - return p.s(S.ForIn{ .init = init_ orelse unreachable, .value = value, .body = body }, loc); - } + var stmt: S.Import = S.Import{ + .namespace_ref = Ref.None, + .import_record_index = std.math.maxInt(u32), + }; + var was_originally_bare_import = false; - // Only require "const" statement initializers when we know we're a normal for loop - if (init_) |init_stmt| { - switch (init_stmt.data) { - .s_local => { - if (init_stmt.getLocal().kind == .k_const) { - try p.requireInitializers(decls); - } - }, - else => {}, + // "export import foo = bar" + if ((opts.is_export or (opts.is_namespace_scope and !opts.is_typescript_declare)) and p.lexer.token != .t_identifier) { + try p.lexer.expected(.t_identifier); } - } - try p.lexer.expect(.t_semicolon); - if (p.lexer.token != .t_semicolon) { - test_ = try p.parseExpr(.lowest); - } - - try p.lexer.expect(.t_semicolon); - - if (p.lexer.token != .t_close_paren) { - update = try p.parseExpr(.lowest); - } - - try p.lexer.expect(.t_close_paren); - var stmtOpts = ParseStatementOptions{}; - const body = try p.parseStmt(&stmtOpts); - return p.s( - S.For{ .init = init_, .test_ = test_, .update = update, .body = body }, - loc, - ); - }, - .t_import => { - const previous_import_keyword = p.es6_import_keyword; - p.es6_import_keyword = p.lexer.range(); - try p.lexer.next(); - var stmt: S.Import = S.Import{ - .namespace_ref = Ref.None, - .import_record_index = std.math.maxInt(u32), - }; - var was_originally_bare_import = false; - - // "export import foo = bar" - if ((opts.is_export or (opts.is_namespace_scope and !opts.is_typescript_declare)) and p.lexer.token != .t_identifier) { - try p.lexer.expected(.t_identifier); - } - - switch (p.lexer.token) { - // "import('path')" - // "import.meta" - .t_open_paren, .t_dot => { - p.es6_import_keyword = previous_import_keyword; // this wasn't an esm import statement after all - const expr = try p.parseSuffix(try p.parseImportExpr(loc, .lowest), .lowest, null, Expr.EFlags.none); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.SExpr{ - .value = expr, - }, loc); - }, - .t_string_literal, .t_no_substitution_template_literal => { - // "import 'path'" - if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - was_originally_bare_import = true; - }, - .t_asterisk => { - // "import * as ns from 'path'" - if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + switch (p.lexer.token) { + // "import('path')" + // "import.meta" + .t_open_paren, .t_dot => { + p.es6_import_keyword = previous_import_keyword; // this wasn't an esm import statement after all + const expr = try p.parseSuffix(try p.parseImportExpr(loc, .lowest), .lowest, null, Expr.EFlags.none); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.SExpr{ + .value = expr, + }, loc); + }, + .t_string_literal, .t_no_substitution_template_literal => { + // "import 'path'" + if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + was_originally_bare_import = true; + }, + .t_asterisk => { + // "import * as ns from 'path'" + if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - try p.lexer.next(); - try p.lexer.expectContextualKeyword("as"); - stmt = S.Import{ - .namespace_ref = try p.storeNameInRef(p.lexer.identifier), - .star_name_loc = p.lexer.loc(), - .import_record_index = std.math.maxInt(u32), - }; - try p.lexer.expect(.t_identifier); - try p.lexer.expectContextualKeyword("from"); - }, - .t_open_brace => { - // "import {item1, item2} from 'path'" - if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - var importClause = try p.parseImportClause(); - stmt = S.Import{ - .namespace_ref = Ref.None, - .import_record_index = std.math.maxInt(u32), - .items = importClause.items, - .is_single_line = importClause.is_single_line, - }; - try p.lexer.expectContextualKeyword("from"); - }, - .t_identifier => { - // "import defaultItem from 'path'" - // "import foo = bar" - if (!opts.is_module_scope and (!opts.is_namespace_scope)) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + try p.lexer.next(); + try p.lexer.expectContextualKeyword("as"); + stmt = S.Import{ + .namespace_ref = try p.storeNameInRef(p.lexer.identifier), + .star_name_loc = p.lexer.loc(), + .import_record_index = std.math.maxInt(u32), + }; + try p.lexer.expect(.t_identifier); + try p.lexer.expectContextualKeyword("from"); + }, + .t_open_brace => { + // "import {item1, item2} from 'path'" + if (!opts.is_module_scope and (!opts.is_namespace_scope or !opts.is_typescript_declare)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + var importClause = try p.parseImportClause(); + stmt = S.Import{ + .namespace_ref = Ref.None, + .import_record_index = std.math.maxInt(u32), + .items = importClause.items, + .is_single_line = importClause.is_single_line, + }; + try p.lexer.expectContextualKeyword("from"); + }, + .t_identifier => { + // "import defaultItem from 'path'" + // "import foo = bar" + if (!opts.is_module_scope and (!opts.is_namespace_scope)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - const default_name = p.lexer.identifier; - stmt = S.Import{ .namespace_ref = Ref.None, .import_record_index = std.math.maxInt(u32), .default_name = LocRef{ - .loc = p.lexer.loc(), - .ref = try p.storeNameInRef(default_name), - } }; - try p.lexer.next(); + const default_name = p.lexer.identifier; + stmt = S.Import{ .namespace_ref = Ref.None, .import_record_index = std.math.maxInt(u32), .default_name = LocRef{ + .loc = p.lexer.loc(), + .ref = try p.storeNameInRef(default_name), + } }; + try p.lexer.next(); - if (p.options.ts) { - // Skip over type-only imports - if (strings.eqlComptime(default_name, "type")) { - switch (p.lexer.token) { - .t_identifier => { - if (!strings.eqlComptime(p.lexer.identifier, "from")) { - // "import type foo from 'bar';" + if (is_typescript_enabled) { + // Skip over type-only imports + if (strings.eqlComptime(default_name, "type")) { + switch (p.lexer.token) { + .t_identifier => { + if (!strings.eqlComptime(p.lexer.identifier, "from")) { + // "import type foo from 'bar';" + try p.lexer.next(); + try p.lexer.expectContextualKeyword("from"); + _ = try p.parsePath(); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.TypeScript{}, loc); + } + }, + .t_asterisk => { + // "import type * as foo from 'bar';" try p.lexer.next(); + try p.lexer.expectContextualKeyword("as"); + try p.lexer.expect(.t_identifier); try p.lexer.expectContextualKeyword("from"); _ = try p.parsePath(); try p.lexer.expectOrInsertSemicolon(); return p.s(S.TypeScript{}, loc); - } - }, + }, + + .t_open_brace => { + // "import type {foo} from 'bar';" + _ = try p.parseImportClause(); + try p.lexer.expectContextualKeyword("from"); + _ = try p.parsePath(); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.TypeScript{}, loc); + }, + else => {}, + } + } + + // Parse TypeScript import assignment statements + if (p.lexer.token == .t_equals or opts.is_export or (opts.is_namespace_scope and !opts.is_typescript_declare)) { + p.es6_import_keyword = previous_import_keyword; // This wasn't an ESM import statement after all; + return p.parseTypeScriptImportEqualsStmt(loc, opts, logger.Loc.Empty, default_name); + } + } + + if (p.lexer.token == .t_comma) { + try p.lexer.next(); + + switch (p.lexer.token) { + // "import defaultItem, * as ns from 'path'" .t_asterisk => { - // "import type * as foo from 'bar';" try p.lexer.next(); try p.lexer.expectContextualKeyword("as"); + stmt.namespace_ref = try p.storeNameInRef(p.lexer.identifier); + stmt.star_name_loc = p.lexer.loc(); try p.lexer.expect(.t_identifier); - try p.lexer.expectContextualKeyword("from"); - _ = try p.parsePath(); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.TypeScript{}, loc); }, - + // "import defaultItem, {item1, item2} from 'path'" .t_open_brace => { - // "import type {foo} from 'bar';" - _ = try p.parseImportClause(); - try p.lexer.expectContextualKeyword("from"); - _ = try p.parsePath(); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.TypeScript{}, loc); + const importClause = try p.parseImportClause(); + stmt.items = importClause.items; + stmt.is_single_line = importClause.is_single_line; + }, + else => { + try p.lexer.unexpected(); + return error.SyntaxError; }, - else => {}, } } - // Parse TypeScript import assignment statements - if (p.lexer.token == .t_equals or opts.is_export or (opts.is_namespace_scope and !opts.is_typescript_declare)) { - p.es6_import_keyword = previous_import_keyword; // This wasn't an ESM import statement after all; - return p.parseTypeScriptImportEqualsStmt(loc, opts, logger.Loc.Empty, default_name); - } - } - - if (p.lexer.token == .t_comma) { - try p.lexer.next(); - - switch (p.lexer.token) { - // "import defaultItem, * as ns from 'path'" - .t_asterisk => { - try p.lexer.next(); - try p.lexer.expectContextualKeyword("as"); - stmt.namespace_ref = try p.storeNameInRef(p.lexer.identifier); - stmt.star_name_loc = p.lexer.loc(); - try p.lexer.expect(.t_identifier); - }, - // "import defaultItem, {item1, item2} from 'path'" - .t_open_brace => { - const importClause = try p.parseImportClause(); - stmt.items = importClause.items; - stmt.is_single_line = importClause.is_single_line; - }, - else => { - try p.lexer.unexpected(); - return error.SyntaxError; - }, - } - } - - try p.lexer.expectContextualKeyword("from"); - }, - else => { - try p.lexer.unexpected(); - return error.SyntaxError; - }, - } - - const path = try p.parsePath(); - stmt.import_record_index = p.addImportRecord(.stmt, path.loc, path.text); - p.import_records.items[stmt.import_record_index].was_originally_bare_import = was_originally_bare_import; - try p.lexer.expectOrInsertSemicolon(); + try p.lexer.expectContextualKeyword("from"); + }, + else => { + try p.lexer.unexpected(); + return error.SyntaxError; + }, + } - if (stmt.star_name_loc) |star| { - stmt.namespace_ref = try p.declareSymbol(.import, star, p.loadNameFromRef(stmt.namespace_ref)); - } else { - var path_name = fs.PathName.init(strings.append(p.allocator, "import_", path.text) catch unreachable); - const name = try path_name.nonUniqueNameString(p.allocator); - stmt.namespace_ref = try p.newSymbol(.other, name); - var scope: *Scope = p.current_scope; - try scope.generated.append(stmt.namespace_ref); - } + const path = try p.parsePath(); + stmt.import_record_index = p.addImportRecord(.stmt, path.loc, path.text); + p.import_records.items[stmt.import_record_index].was_originally_bare_import = was_originally_bare_import; + try p.lexer.expectOrInsertSemicolon(); - var item_refs = StringHashMap(LocRef).init(p.allocator); + if (stmt.star_name_loc) |star| { + stmt.namespace_ref = try p.declareSymbol(.import, star, p.loadNameFromRef(stmt.namespace_ref)); + } else { + var path_name = fs.PathName.init(strings.append(p.allocator, "import_", path.text) catch unreachable); + const name = try path_name.nonUniqueNameString(p.allocator); + stmt.namespace_ref = try p.newSymbol(.other, name); + var scope: *Scope = p.current_scope; + try scope.generated.append(stmt.namespace_ref); + } - // Link the default item to the namespace - if (stmt.default_name) |*name_loc| { - const name = p.loadNameFromRef(name_loc.ref orelse unreachable); - const ref = try p.declareSymbol(.import, name_loc.loc, name); - try p.is_import_item.put(ref, true); - name_loc.ref = ref; - } + var item_refs = StringHashMap(LocRef).init(p.allocator); - if (stmt.items.len > 0) { - try item_refs.ensureCapacity(@intCast(u32, stmt.items.len)); - for (stmt.items) |*item| { - const name = p.loadNameFromRef(item.name.ref orelse unreachable); - const ref = try p.declareSymbol(.import, item.name.loc, name); - p.checkForNonBMPCodePoint(item.alias_loc, item.alias); + // Link the default item to the namespace + if (stmt.default_name) |*name_loc| { + const name = p.loadNameFromRef(name_loc.ref orelse unreachable); + const ref = try p.declareSymbol(.import, name_loc.loc, name); try p.is_import_item.put(ref, true); - item.name.ref = ref; - item_refs.putAssumeCapacity(item.alias, LocRef{ .loc = item.name.loc, .ref = ref }); + name_loc.ref = ref; } - } - // Track the items for this namespace - try p.import_items_for_namespace.put(stmt.namespace_ref, item_refs); - return p.s(stmt, loc); - }, - .t_break => { - try p.lexer.next(); - const name = try p.parseLabelName(); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.Break{ .label = name }, loc); - }, - .t_continue => { - try p.lexer.next(); - const name = try p.parseLabelName(); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.Continue{ .label = name }, loc); - }, - .t_return => { - try p.lexer.next(); - var value: ?Expr = null; - if ((p.lexer.token != .t_semicolon and - !p.lexer.has_newline_before and - p.lexer.token != .t_close_brace and - p.lexer.token != .t_end_of_file)) - { - value = try p.parseExpr(.lowest); - } - p.latest_return_had_semicolon = p.lexer.token == .t_semicolon; - try p.lexer.expectOrInsertSemicolon(); + if (stmt.items.len > 0) { + try item_refs.ensureCapacity(@intCast(u32, stmt.items.len)); + for (stmt.items) |*item| { + const name = p.loadNameFromRef(item.name.ref orelse unreachable); + const ref = try p.declareSymbol(.import, item.name.loc, name); + p.checkForNonBMPCodePoint(item.alias_loc, item.alias); + try p.is_import_item.put(ref, true); + item.name.ref = ref; + item_refs.putAssumeCapacity(item.alias, LocRef{ .loc = item.name.loc, .ref = ref }); + } + } - return p.s(S.Return{ .value = value }, loc); - }, - .t_throw => { - try p.lexer.next(); - if (p.lexer.has_newline_before) { - try p.log.addError(p.source, logger.Loc{ - .start = loc.start + 5, - }, "Unexpected newline after \"throw\""); - fail(); - } - const expr = try p.parseExpr(.lowest); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.Throw{ .value = expr }, loc); - }, - .t_debugger => { - try p.lexer.next(); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.Debugger{}, loc); - }, - .t_open_brace => { - _ = try p.pushScopeForParsePass(.block, loc); - defer p.popScope(); - try p.lexer.next(); - var stmtOpts = ParseStatementOptions{}; - const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); - try p.lexer.next(); - return p.s(S.Block{ - .stmts = stmts, - }, loc); - }, + // Track the items for this namespace + try p.import_items_for_namespace.put(stmt.namespace_ref, item_refs); + return p.s(stmt, loc); + }, + .t_break => { + try p.lexer.next(); + const name = try p.parseLabelName(); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.Break{ .label = name }, loc); + }, + .t_continue => { + try p.lexer.next(); + const name = try p.parseLabelName(); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.Continue{ .label = name }, loc); + }, + .t_return => { + try p.lexer.next(); + var value: ?Expr = null; + if ((p.lexer.token != .t_semicolon and + !p.lexer.has_newline_before and + p.lexer.token != .t_close_brace and + p.lexer.token != .t_end_of_file)) + { + value = try p.parseExpr(.lowest); + } + p.latest_return_had_semicolon = p.lexer.token == .t_semicolon; + try p.lexer.expectOrInsertSemicolon(); - else => { - const is_identifier = p.lexer.token == .t_identifier; - const name = p.lexer.identifier; - var emiss = E.Missing{}; - // Parse either an async function, an async expression, or a normal expression - var expr: Expr = Expr{ .loc = loc, .data = Expr.Data{ .e_missing = emiss } }; - if (is_identifier and strings.eqlComptime(p.lexer.raw(), "async")) { - var async_range = p.lexer.range(); + return p.s(S.Return{ .value = value }, loc); + }, + .t_throw => { + try p.lexer.next(); + if (p.lexer.has_newline_before) { + try p.log.addError(p.source, logger.Loc{ + .start = loc.start + 5, + }, "Unexpected newline after \"throw\""); + fail(); + } + const expr = try p.parseExpr(.lowest); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.Throw{ .value = expr }, loc); + }, + .t_debugger => { try p.lexer.next(); - if (p.lexer.token == .t_function and !p.lexer.has_newline_before) { + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.Debugger{}, loc); + }, + .t_open_brace => { + _ = try p.pushScopeForParsePass(.block, loc); + defer p.popScope(); + try p.lexer.next(); + var stmtOpts = ParseStatementOptions{}; + const stmts = try p.parseStmtsUpTo(.t_close_brace, &stmtOpts); + try p.lexer.next(); + return p.s(S.Block{ + .stmts = stmts, + }, loc); + }, + + else => { + const is_identifier = p.lexer.token == .t_identifier; + const name = p.lexer.identifier; + var emiss = E.Missing{}; + // Parse either an async function, an async expression, or a normal expression + var expr: Expr = Expr{ .loc = loc, .data = Expr.Data{ .e_missing = emiss } }; + if (is_identifier and strings.eqlComptime(p.lexer.raw(), "async")) { + var async_range = p.lexer.range(); try p.lexer.next(); + if (p.lexer.token == .t_function and !p.lexer.has_newline_before) { + try p.lexer.next(); - return try p.parseFnStmt(async_range.loc, opts, async_range); - } + return try p.parseFnStmt(async_range.loc, opts, async_range); + } - expr = try p.parseSuffix(try p.parseAsyncPrefixExpr(async_range, .lowest), .lowest, null, Expr.EFlags.none); - } else { - const exprOrLet = try p.parseExprOrLetStmt(opts); - switch (exprOrLet.stmt_or_expr) { - .stmt => |stmt| { - try p.lexer.expectOrInsertSemicolon(); - return stmt; - }, - .expr => |_expr| { - expr = _expr; - }, + expr = try p.parseSuffix(try p.parseAsyncPrefixExpr(async_range, .lowest), .lowest, null, Expr.EFlags.none); + } else { + const exprOrLet = try p.parseExprOrLetStmt(opts); + switch (exprOrLet.stmt_or_expr) { + .stmt => |stmt| { + try p.lexer.expectOrInsertSemicolon(); + return stmt; + }, + .expr => |_expr| { + expr = _expr; + }, + } } - } - if (is_identifier) { - switch (expr.data) { - .e_identifier => |ident| { - if (p.lexer.token == .t_colon and !opts.hasDecorators()) { - _ = try p.pushScopeForParsePass(.label, loc); - defer p.popScope(); + if (is_identifier) { + switch (expr.data) { + .e_identifier => |ident| { + if (p.lexer.token == .t_colon and !opts.hasDecorators()) { + _ = try p.pushScopeForParsePass(.label, loc); + defer p.popScope(); - // Parse a labeled statement - try p.lexer.next(); + // Parse a labeled statement + try p.lexer.next(); - const _name = LocRef{ .loc = expr.loc, .ref = ident.ref }; - var nestedOpts = ParseStatementOptions{}; + const _name = LocRef{ .loc = expr.loc, .ref = ident.ref }; + var nestedOpts = ParseStatementOptions{}; - switch (opts.lexical_decl) { - .allow_all, .allow_fn_inside_label => { - nestedOpts.lexical_decl = .allow_fn_inside_label; - }, - else => {}, + switch (opts.lexical_decl) { + .allow_all, .allow_fn_inside_label => { + nestedOpts.lexical_decl = .allow_fn_inside_label; + }, + else => {}, + } + var stmt = try p.parseStmt(&nestedOpts); + return p.s(S.Label{ .name = _name, .stmt = stmt }, loc); } - var stmt = try p.parseStmt(&nestedOpts); - return p.s(S.Label{ .name = _name, .stmt = stmt }, loc); - } - }, - else => {}, - } + }, + else => {}, + } - if (p.options.ts) { - if (js_lexer.TypescriptStmtKeyword.List.get(name)) |ts_stmt| { - switch (ts_stmt) { - .ts_stmt_type => { - if (p.lexer.token == .t_identifier and !p.lexer.has_newline_before) { - // "type Foo = any" + if (is_typescript_enabled) { + if (js_lexer.TypescriptStmtKeyword.List.get(name)) |ts_stmt| { + switch (ts_stmt) { + .ts_stmt_type => { + if (p.lexer.token == .t_identifier and !p.lexer.has_newline_before) { + // "type Foo = any" + var stmtOpts = ParseStatementOptions{ .is_module_scope = opts.is_module_scope }; + try p.skipTypeScriptTypeStmt(&stmtOpts); + return p.s(S.TypeScript{}, loc); + } + }, + .ts_stmt_namespace, .ts_stmt_module => { + // "namespace Foo {}" + // "module Foo {}" + // "declare module 'fs' {}" + // "declare module 'fs';" + if (((opts.is_module_scope or opts.is_namespace_scope) and (p.lexer.token == .t_identifier or + (p.lexer.token == .t_string_literal and opts.is_typescript_declare)))) + { + return p.parseTypeScriptNamespaceStmt(loc, opts); + } + }, + .ts_stmt_interface => { + // "interface Foo {}" var stmtOpts = ParseStatementOptions{ .is_module_scope = opts.is_module_scope }; - try p.skipTypeScriptTypeStmt(&stmtOpts); - return p.s(S.TypeScript{}, loc); - } - }, - .ts_stmt_namespace, .ts_stmt_module => { - // "namespace Foo {}" - // "module Foo {}" - // "declare module 'fs' {}" - // "declare module 'fs';" - if (((opts.is_module_scope or opts.is_namespace_scope) and (p.lexer.token == .t_identifier or - (p.lexer.token == .t_string_literal and opts.is_typescript_declare)))) - { - return p.parseTypeScriptNamespaceStmt(loc, opts); - } - }, - .ts_stmt_interface => { - // "interface Foo {}" - var stmtOpts = ParseStatementOptions{ .is_module_scope = opts.is_module_scope }; - try p.skipTypeScriptInterfaceStmt(&stmtOpts); - return p.s(S.TypeScript{}, loc); - }, - .ts_stmt_abstract => { - if (p.lexer.token == .t_class or opts.ts_decorators != null) { - return try p.parseClassStmt(loc, opts); - } - }, - .ts_stmt_global => { - // "declare module 'fs' { global { namespace NodeJS {} } }" - if (opts.is_namespace_scope and opts.is_typescript_declare and p.lexer.token == .t_open_brace) { - try p.lexer.next(); - _ = try p.parseStmtsUpTo(.t_close_brace, opts); - try p.lexer.next(); + try p.skipTypeScriptInterfaceStmt(&stmtOpts); return p.s(S.TypeScript{}, loc); - } - }, - .ts_stmt_declare => { - opts.lexical_decl = .allow_all; - opts.is_typescript_declare = true; - - // "@decorator declare class Foo {}" - // "@decorator declare abstract class Foo {}" - if (opts.ts_decorators != null and p.lexer.token != .t_class and !p.lexer.isContextualKeyword("abstract")) { - try p.lexer.expected(.t_class); - } + }, + .ts_stmt_abstract => { + if (p.lexer.token == .t_class or opts.ts_decorators != null) { + return try p.parseClassStmt(loc, opts); + } + }, + .ts_stmt_global => { + // "declare module 'fs' { global { namespace NodeJS {} } }" + if (opts.is_namespace_scope and opts.is_typescript_declare and p.lexer.token == .t_open_brace) { + try p.lexer.next(); + _ = try p.parseStmtsUpTo(.t_close_brace, opts); + try p.lexer.next(); + return p.s(S.TypeScript{}, loc); + } + }, + .ts_stmt_declare => { + opts.lexical_decl = .allow_all; + opts.is_typescript_declare = true; - // "declare global { ... }" - if (p.lexer.isContextualKeyword("global")) { - try p.lexer.next(); - try p.lexer.expect(.t_open_brace); - _ = try p.parseStmtsUpTo(.t_close_brace, opts); - try p.lexer.next(); - return p.s(S.TypeScript{}, loc); - } + // "@decorator declare class Foo {}" + // "@decorator declare abstract class Foo {}" + if (opts.ts_decorators != null and p.lexer.token != .t_class and !p.lexer.isContextualKeyword("abstract")) { + try p.lexer.expected(.t_class); + } - // "declare const x: any" - const stmt = try p.parseStmt(opts); - if (opts.ts_decorators) |decs| { - p.discardScopesUpTo(decs.scope_index); - } + // "declare global { ... }" + if (p.lexer.isContextualKeyword("global")) { + try p.lexer.next(); + try p.lexer.expect(.t_open_brace); + _ = try p.parseStmtsUpTo(.t_close_brace, opts); + try p.lexer.next(); + return p.s(S.TypeScript{}, loc); + } - // Unlike almost all uses of "declare", statements that use - // "export declare" with "var/let/const" inside a namespace affect - // code generation. They cause any declared bindings to be - // considered exports of the namespace. Identifier references to - // those names must be converted into property accesses off the - // namespace object: - // - // namespace ns { - // export declare const x - // export function y() { return x } - // } - // - // (ns as any).x = 1 - // console.log(ns.y()) - // - // In this example, "return x" must be replaced with "return ns.x". - // This is handled by replacing each "export declare" statement - // inside a namespace with an "export var" statement containing all - // of the declared bindings. That "export var" statement will later - // cause identifiers to be transformed into property accesses. - if (opts.is_namespace_scope and opts.is_export) { - var decls: []G.Decl = &([_]G.Decl{}); - switch (stmt.data) { - .s_local => |local| { - var _decls = try List(G.Decl).initCapacity(p.allocator, local.decls.len); - for (local.decls) |decl| { - try extractDeclsForBinding(decl.binding, &_decls); - } - decls = _decls.toOwnedSlice(); - }, - else => {}, + // "declare const x: any" + const stmt = try p.parseStmt(opts); + if (opts.ts_decorators) |decs| { + p.discardScopesUpTo(decs.scope_index); } - if (decls.len > 0) { - return p.s(S.Local{ - .kind = .k_var, - .is_export = true, - .decls = decls, - }, loc); + // Unlike almost all uses of "declare", statements that use + // "export declare" with "var/let/const" inside a namespace affect + // code generation. They cause any declared bindings to be + // considered exports of the namespace. Identifier references to + // those names must be converted into property accesses off the + // namespace object: + // + // namespace ns { + // export declare const x + // export function y() { return x } + // } + // + // (ns as any).x = 1 + // console.log(ns.y()) + // + // In this example, "return x" must be replaced with "return ns.x". + // This is handled by replacing each "export declare" statement + // inside a namespace with an "export var" statement containing all + // of the declared bindings. That "export var" statement will later + // cause identifiers to be transformed into property accesses. + if (opts.is_namespace_scope and opts.is_export) { + var decls: []G.Decl = &([_]G.Decl{}); + switch (stmt.data) { + .s_local => |local| { + var _decls = try List(G.Decl).initCapacity(p.allocator, local.decls.len); + for (local.decls) |decl| { + try extractDeclsForBinding(decl.binding, &_decls); + } + decls = _decls.toOwnedSlice(); + }, + else => {}, + } + + if (decls.len > 0) { + return p.s(S.Local{ + .kind = .k_var, + .is_export = true, + .decls = decls, + }, loc); + } } - } - return p.s(S.TypeScript{}, loc); - }, + return p.s(S.TypeScript{}, loc); + }, + } } } } - } - // Output.print("\n\nmVALUE {s}:{s}\n", .{ expr, name }); - try p.lexer.expectOrInsertSemicolon(); - return p.s(S.SExpr{ .value = expr }, loc); - }, - } + // Output.print("\n\nmVALUE {s}:{s}\n", .{ expr, name }); + try p.lexer.expectOrInsertSemicolon(); + return p.s(S.SExpr{ .value = expr }, loc); + }, + } - return js_ast.Stmt.empty(); - } + return js_ast.Stmt.empty(); + } - pub fn discardScopesUpTo(p: *P, scope_index: usize) void { - // Remove any direct children from their parent - var scope = p.current_scope; - var children = scope.children; + pub fn discardScopesUpTo(p: *P, scope_index: usize) void { + // Remove any direct children from their parent + var scope = p.current_scope; + var children = scope.children; - for (p.scopes_in_order.items[scope_index..]) |_child| { - const child = _child orelse continue; + for (p.scopes_in_order.items[scope_index..]) |_child| { + const child = _child orelse continue; - if (child.scope.parent == p.current_scope) { - var i: usize = children.items.len - 1; - while (i >= 0) { - if (children.items[i] == child.scope) { - _ = children.orderedRemove(i); - break; + if (child.scope.parent == p.current_scope) { + var i: usize = children.items.len - 1; + while (i >= 0) { + if (children.items[i] == child.scope) { + _ = children.orderedRemove(i); + break; + } + i -= 1; } - i -= 1; } } - } - // Truncate the scope order where we started to pretend we never saw this scope - p.scopes_in_order.shrinkRetainingCapacity(scope_index); - } + // Truncate the scope order where we started to pretend we never saw this scope + p.scopes_in_order.shrinkRetainingCapacity(scope_index); + } - pub fn skipTypeScriptTypeStmt(p: *P, opts: *ParseStatementOptions) anyerror!void { - if (opts.is_export and p.lexer.token == .t_open_brace) { - // "export type {foo}" - // "export type {foo} from 'bar'" - _ = try p.parseExportClause(); - if (p.lexer.isContextualKeyword("from")) { - try p.lexer.next(); - _ = try p.parsePath(); + pub fn skipTypeScriptTypeStmt(p: *P, opts: *ParseStatementOptions) anyerror!void { + if (opts.is_export and p.lexer.token == .t_open_brace) { + // "export type {foo}" + // "export type {foo} from 'bar'" + _ = try p.parseExportClause(); + if (p.lexer.isContextualKeyword("from")) { + try p.lexer.next(); + _ = try p.parsePath(); + } + try p.lexer.expectOrInsertSemicolon(); + return; } - try p.lexer.expectOrInsertSemicolon(); - return; - } - const name = p.lexer.identifier; - try p.lexer.expect(.t_identifier); + const name = p.lexer.identifier; + try p.lexer.expect(.t_identifier); + + if (opts.is_module_scope) { + p.local_type_names.put(name, true) catch unreachable; + } - if (opts.is_module_scope) { - p.local_type_names.put(name, true) catch unreachable; + try p.skipTypeScriptTypeParameters(); + try p.lexer.expect(.t_equals); + try p.skipTypeScriptType(.lowest); + try p.lexer.expectOrInsertSemicolon(); } - try p.skipTypeScriptTypeParameters(); - try p.lexer.expect(.t_equals); - try p.skipTypeScriptType(.lowest); - try p.lexer.expectOrInsertSemicolon(); - } + pub fn parseTypeScriptNamespaceStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) anyerror!Stmt { + // "namespace foo {}"; + const name_loc = p.lexer.loc(); + const name_text = p.lexer.identifier; + try p.lexer.next(); - pub fn parseTypeScriptNamespaceStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) anyerror!Stmt { - // "namespace foo {}"; - const name_loc = p.lexer.loc(); - const name_text = p.lexer.identifier; - try p.lexer.next(); + var name = LocRef{ .loc = name_loc, .ref = null }; + const scope_index = try p.pushScopeForParsePass(.entry, loc); - var name = LocRef{ .loc = name_loc, .ref = null }; - const scope_index = try p.pushScopeForParsePass(.entry, loc); + const old_has_non_local_export_declare_inside_namespace = p.has_non_local_export_declare_inside_namespace; + p.has_non_local_export_declare_inside_namespace = false; - const old_has_non_local_export_declare_inside_namespace = p.has_non_local_export_declare_inside_namespace; - p.has_non_local_export_declare_inside_namespace = false; + var stmts: List(Stmt) = List(Stmt).init(p.allocator); - var stmts: List(Stmt) = List(Stmt).init(p.allocator); + if (p.lexer.token == .t_dot) { + const dot_loc = p.lexer.loc(); + try p.lexer.next(); - if (p.lexer.token == .t_dot) { - const dot_loc = p.lexer.loc(); - try p.lexer.next(); + var _opts = ParseStatementOptions{ + .is_export = true, + .is_namespace_scope = true, + .is_typescript_declare = opts.is_typescript_declare, + }; + stmts.append(try p.parseTypeScriptNamespaceStmt(dot_loc, &_opts)) catch unreachable; + } else if (opts.is_typescript_declare and p.lexer.token != .t_open_brace) { + try p.lexer.expectOrInsertSemicolon(); + } else { + try p.lexer.expect(.t_open_brace); + var _opts = ParseStatementOptions{ + .is_namespace_scope = true, + .is_typescript_declare = opts.is_typescript_declare, + }; + stmts = List(Stmt).fromOwnedSlice(p.allocator, try p.parseStmtsUpTo(.t_close_brace, &_opts)); + try p.lexer.next(); + } + const has_non_local_export_declare_inside_namespace = p.has_non_local_export_declare_inside_namespace; + p.has_non_local_export_declare_inside_namespace = old_has_non_local_export_declare_inside_namespace; - var _opts = ParseStatementOptions{ - .is_export = true, - .is_namespace_scope = true, - .is_typescript_declare = opts.is_typescript_declare, - }; - stmts.append(try p.parseTypeScriptNamespaceStmt(dot_loc, &_opts)) catch unreachable; - } else if (opts.is_typescript_declare and p.lexer.token != .t_open_brace) { - try p.lexer.expectOrInsertSemicolon(); - } else { - try p.lexer.expect(.t_open_brace); - var _opts = ParseStatementOptions{ - .is_namespace_scope = true, - .is_typescript_declare = opts.is_typescript_declare, - }; - stmts = List(Stmt).fromOwnedSlice(p.allocator, try p.parseStmtsUpTo(.t_close_brace, &_opts)); - try p.lexer.next(); - } - const has_non_local_export_declare_inside_namespace = p.has_non_local_export_declare_inside_namespace; - p.has_non_local_export_declare_inside_namespace = old_has_non_local_export_declare_inside_namespace; + // Import assignments may be only used in type expressions, not value + // expressions. If this is the case, the TypeScript compiler removes + // them entirely from the output. That can cause the namespace itself + // to be considered empty and thus be removed. + var import_equal_count: usize = 0; + const _stmts: []Stmt = stmts.items; + for (_stmts) |stmt| { + switch (stmt.data) { + .s_local => |local| { + if (local.was_ts_import_equals and !local.is_export) { + import_equal_count += 1; + } + }, + else => {}, + } + } - // Import assignments may be only used in type expressions, not value - // expressions. If this is the case, the TypeScript compiler removes - // them entirely from the output. That can cause the namespace itself - // to be considered empty and thus be removed. - var import_equal_count: usize = 0; - const _stmts: []Stmt = stmts.items; - for (_stmts) |stmt| { - switch (stmt.data) { - .s_local => |local| { - if (local.was_ts_import_equals and !local.is_export) { - import_equal_count += 1; - } - }, - else => {}, + // TypeScript omits namespaces without values. These namespaces + // are only allowed to be used in type expressions. They are + // allowed to be exported, but can also only be used in type + // expressions when imported. So we shouldn't count them as a + // real export either. + // + // TypeScript also strangely counts namespaces containing only + // "export declare" statements as non-empty even though "declare" + // statements are only type annotations. We cannot omit the namespace + // in that case. See https://github.com/evanw/esbuild/issues/1158. + if ((stmts.items.len == import_equal_count and !has_non_local_export_declare_inside_namespace) or opts.is_typescript_declare) { + p.popAndDiscardScope(scope_index); + if (opts.is_module_scope) { + p.local_type_names.put(name_text, true) catch unreachable; + } + return p.s(S.TypeScript{}, loc); } - } - // TypeScript omits namespaces without values. These namespaces - // are only allowed to be used in type expressions. They are - // allowed to be exported, but can also only be used in type - // expressions when imported. So we shouldn't count them as a - // real export either. - // - // TypeScript also strangely counts namespaces containing only - // "export declare" statements as non-empty even though "declare" - // statements are only type annotations. We cannot omit the namespace - // in that case. See https://github.com/evanw/esbuild/issues/1158. - if ((stmts.items.len == import_equal_count and !has_non_local_export_declare_inside_namespace) or opts.is_typescript_declare) { - p.popAndDiscardScope(scope_index); - if (opts.is_module_scope) { - p.local_type_names.put(name_text, true) catch unreachable; + var arg_ref: ?Ref = null; + if (!opts.is_typescript_declare) { + // Avoid a collision with the namespace closure argument variable if the + // namespace exports a symbol with the same name as the namespace itself: + // + // namespace foo { + // export let foo = 123 + // console.log(foo) + // } + // + // TypeScript generates the following code in this case: + // + // var foo; + // (function (foo_1) { + // foo_1.foo = 123; + // console.log(foo_1.foo); + // })(foo || (foo = {})); + // + if (p.current_scope.members.contains(name_text)) { + // Add a "_" to make tests easier to read, since non-bundler tests don't + // run the renamer. For external-facing things the renamer will avoid + // collisions automatically so this isn't important for correctness. + arg_ref = p.newSymbol(.hoisted, strings.cat(p.allocator, "_", name_text) catch unreachable) catch unreachable; + p.current_scope.generated.append(arg_ref.?) catch unreachable; + } else { + arg_ref = p.newSymbol(.hoisted, name_text) catch unreachable; + } } - return p.s(S.TypeScript{}, loc); - } + p.popScope(); - var arg_ref: ?Ref = null; - if (!opts.is_typescript_declare) { - // Avoid a collision with the namespace closure argument variable if the - // namespace exports a symbol with the same name as the namespace itself: - // - // namespace foo { - // export let foo = 123 - // console.log(foo) - // } - // - // TypeScript generates the following code in this case: - // - // var foo; - // (function (foo_1) { - // foo_1.foo = 123; - // console.log(foo_1.foo); - // })(foo || (foo = {})); - // - if (p.current_scope.members.contains(name_text)) { - // Add a "_" to make tests easier to read, since non-bundler tests don't - // run the renamer. For external-facing things the renamer will avoid - // collisions automatically so this isn't important for correctness. - arg_ref = p.newSymbol(.hoisted, strings.cat(p.allocator, "_", name_text) catch unreachable) catch unreachable; - p.current_scope.generated.append(arg_ref.?) catch unreachable; - } else { - arg_ref = p.newSymbol(.hoisted, name_text) catch unreachable; + if (!opts.is_typescript_declare) { + name.ref = p.declareSymbol(.ts_namespace, name_loc, name_text) catch unreachable; } - } - p.popScope(); - if (!opts.is_typescript_declare) { - name.ref = p.declareSymbol(.ts_namespace, name_loc, name_text) catch unreachable; + return p.s( + S.Namespace{ .name = name, .arg = arg_ref orelse Ref.None, .stmts = stmts.toOwnedSlice(), .is_export = opts.is_export }, + loc, + ); } - return p.s( - S.Namespace{ .name = name, .arg = arg_ref orelse Ref.None, .stmts = stmts.toOwnedSlice(), .is_export = opts.is_export }, - loc, - ); - } - - pub fn skipTypeScriptInterfaceStmt(p: *P, opts: *ParseStatementOptions) !void { - const name = p.lexer.identifier; - try p.lexer.expect(.t_identifier); + pub fn skipTypeScriptInterfaceStmt(p: *P, opts: *ParseStatementOptions) !void { + const name = p.lexer.identifier; + try p.lexer.expect(.t_identifier); - if (opts.is_module_scope) { - p.local_type_names.put(name, true) catch unreachable; - } + if (opts.is_module_scope) { + p.local_type_names.put(name, true) catch unreachable; + } - try p.skipTypeScriptTypeParameters(); + try p.skipTypeScriptTypeParameters(); - if (p.lexer.token == .t_extends) { - try p.lexer.next(); + if (p.lexer.token == .t_extends) { + try p.lexer.next(); - while (true) { - try p.skipTypeScriptType(.lowest); - if (p.lexer.token != .t_comma) { - break; + while (true) { + try p.skipTypeScriptType(.lowest); + if (p.lexer.token != .t_comma) { + break; + } + try p.lexer.next(); } - try p.lexer.next(); } - } - if (p.lexer.isContextualKeyword("implements")) { - try p.lexer.next(); - while (true) { - try p.skipTypeScriptType(.lowest); - if (p.lexer.token != .t_comma) { - break; - } + if (p.lexer.isContextualKeyword("implements")) { try p.lexer.next(); + while (true) { + try p.skipTypeScriptType(.lowest); + if (p.lexer.token != .t_comma) { + break; + } + try p.lexer.next(); + } } - } - try p.skipTypeScriptObjectType(); - } + try p.skipTypeScriptObjectType(); + } - // This assumes the caller has already parsed the "import" token + // This assumes the caller has already parsed the "import" token - pub fn parseTypeScriptImportEqualsStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions, default_name_loc: logger.Loc, default_name: string) anyerror!Stmt { - try p.lexer.expect(.t_equals); + pub fn parseTypeScriptImportEqualsStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions, default_name_loc: logger.Loc, default_name: string) anyerror!Stmt { + try p.lexer.expect(.t_equals); - const kind = S.Local.Kind.k_const; - const name = p.lexer.identifier; - var value = p.e(E.Identifier{ .ref = p.storeNameInRef(name) catch unreachable }, p.lexer.loc()); - try p.lexer.expect(.t_identifier); + const kind = S.Local.Kind.k_const; + const name = p.lexer.identifier; + var value = p.e(E.Identifier{ .ref = p.storeNameInRef(name) catch unreachable }, p.lexer.loc()); + try p.lexer.expect(.t_identifier); - if (strings.eqlComptime(name, "require") and p.lexer.token == .t_open_paren) { - // "import ns = require('x')" - try p.lexer.next(); - var path = p.e(p.lexer.toEString(), p.lexer.loc()); - try p.lexer.expect(.t_string_literal); - try p.lexer.expect(.t_close_paren); - const args = p.allocator.alloc(ExprNodeIndex, 1) catch unreachable; - args[0] = path; - value.data = .{ .e_call = Expr.Data.Store.All.append(E.Call, E.Call{ .target = value, .args = args }) }; - } else { - // "import Foo = Bar" - // "import Foo = Bar.Baz" - while (p.lexer.token == .t_dot) { + if (strings.eqlComptime(name, "require") and p.lexer.token == .t_open_paren) { + // "import ns = require('x')" try p.lexer.next(); - value.data = .{ .e_dot = Expr.Data.Store.All.append( - E.Dot, - E.Dot{ .target = value, .name = p.lexer.identifier, .name_loc = p.lexer.loc() }, - ) }; - try p.lexer.expect(.t_identifier); + var path = p.e(p.lexer.toEString(), p.lexer.loc()); + try p.lexer.expect(.t_string_literal); + try p.lexer.expect(.t_close_paren); + const args = p.allocator.alloc(ExprNodeIndex, 1) catch unreachable; + args[0] = path; + value.data = .{ .e_call = Expr.Data.Store.All.append(E.Call, E.Call{ .target = value, .args = args }) }; + } else { + // "import Foo = Bar" + // "import Foo = Bar.Baz" + while (p.lexer.token == .t_dot) { + try p.lexer.next(); + value.data = .{ .e_dot = Expr.Data.Store.All.append( + E.Dot, + E.Dot{ .target = value, .name = p.lexer.identifier, .name_loc = p.lexer.loc() }, + ) }; + try p.lexer.expect(.t_identifier); + } } - } - try p.lexer.expectOrInsertSemicolon(); + try p.lexer.expectOrInsertSemicolon(); + + if (opts.is_typescript_declare) { + // "import type foo = require('bar');" + // "import type foo = bar.baz;" + return p.s(S.TypeScript{}, loc); + } - if (opts.is_typescript_declare) { - // "import type foo = require('bar');" - // "import type foo = bar.baz;" - return p.s(S.TypeScript{}, loc); + const ref = p.declareSymbol(.cconst, default_name_loc, default_name) catch unreachable; + var decls = p.allocator.alloc(Decl, 1) catch unreachable; + decls[0] = Decl{ + .binding = p.b(B.Identifier{ .ref = ref }, default_name_loc), + .value = value, + }; + return p.s(S.Local{ .kind = kind, .decls = decls, .is_export = opts.is_export, .was_ts_import_equals = true }, loc); } - const ref = p.declareSymbol(.cconst, default_name_loc, default_name) catch unreachable; - var decls = p.allocator.alloc(Decl, 1) catch unreachable; - decls[0] = Decl{ - .binding = p.b(B.Identifier{ .ref = ref }, default_name_loc), - .value = value, - }; - return p.s(S.Local{ .kind = kind, .decls = decls, .is_export = opts.is_export, .was_ts_import_equals = true }, loc); - } + pub fn parseClauseAlias(p: *P, kind: string) !string { + const loc = p.lexer.loc(); - pub fn parseClauseAlias(p: *P, kind: string) !string { - const loc = p.lexer.loc(); + // The alias may now be a string (see https://github.com/tc39/ecma262/pull/2154) + if (p.lexer.token == .t_string_literal) { + if (p.lexer.string_literal_is_ascii) { + return p.lexer.string_literal_slice; + } else if (p.lexer.utf16ToStringWithValidation(p.lexer.string_literal)) |alias| { + return alias; + } else |err| { + const r = p.source.rangeOfString(loc); + // TODO: improve error message + try p.log.addRangeErrorFmt(p.source, r, p.allocator, "Invalid {s} alias because it contains an unpaired Unicode surrogate (like emoji)", .{kind}); + return p.source.textForRange(r); + } + } - // The alias may now be a string (see https://github.com/tc39/ecma262/pull/2154) - if (p.lexer.token == .t_string_literal) { - if (p.lexer.string_literal_is_ascii) { - return p.lexer.string_literal_slice; - } else if (p.lexer.utf16ToStringWithValidation(p.lexer.string_literal)) |alias| { - return alias; - } else |err| { - const r = p.source.rangeOfString(loc); - // TODO: improve error message - try p.log.addRangeErrorFmt(p.source, r, p.allocator, "Invalid {s} alias because it contains an unpaired Unicode surrogate (like emoji)", .{kind}); - return p.source.textForRange(r); + // The alias may be a keyword + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); } - } - // The alias may be a keyword - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); + const alias = p.lexer.identifier; + p.checkForNonBMPCodePoint(loc, alias); + return alias; } - const alias = p.lexer.identifier; - p.checkForNonBMPCodePoint(loc, alias); - return alias; - } + pub fn parseImportClause( + p: *P, + ) !ImportClause { + var items = List(js_ast.ClauseItem).init(p.allocator); + try p.lexer.expect(.t_open_brace); + var is_single_line = !p.lexer.has_newline_before; + + while (p.lexer.token != .t_close_brace) { + // The alias may be a keyword; + const isIdentifier = p.lexer.token == .t_identifier; + const alias_loc = p.lexer.loc(); + const alias = try p.parseClauseAlias("import"); + var name = LocRef{ .loc = alias_loc, .ref = try p.storeNameInRef(alias) }; + var original_name = alias; + try p.lexer.next(); - pub fn parseImportClause( - p: *P, - ) !ImportClause { - var items = List(js_ast.ClauseItem).init(p.allocator); - try p.lexer.expect(.t_open_brace); - var is_single_line = !p.lexer.has_newline_before; - - while (p.lexer.token != .t_close_brace) { - // The alias may be a keyword; - const isIdentifier = p.lexer.token == .t_identifier; - const alias_loc = p.lexer.loc(); - const alias = try p.parseClauseAlias("import"); - var name = LocRef{ .loc = alias_loc, .ref = try p.storeNameInRef(alias) }; - var original_name = alias; - try p.lexer.next(); + if (p.lexer.isContextualKeyword("as")) { + try p.lexer.next(); + original_name = p.lexer.identifier; + name = LocRef{ .loc = alias_loc, .ref = try p.storeNameInRef(original_name) }; + try p.lexer.expect(.t_identifier); + } else if (!isIdentifier) { + // An import where the name is a keyword must have an alias + try p.lexer.expectedString("\"as\""); + } - if (p.lexer.isContextualKeyword("as")) { - try p.lexer.next(); - original_name = p.lexer.identifier; - name = LocRef{ .loc = alias_loc, .ref = try p.storeNameInRef(original_name) }; - try p.lexer.expect(.t_identifier); - } else if (!isIdentifier) { - // An import where the name is a keyword must have an alias - try p.lexer.expectedString("\"as\""); - } + // Reject forbidden names + if (isEvalOrArguments(original_name)) { + const r = js_lexer.rangeOfIdentifier(p.source, name.loc); + try p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot use \"{s}\" as an identifier here", .{original_name}); + } - // Reject forbidden names - if (isEvalOrArguments(original_name)) { - const r = js_lexer.rangeOfIdentifier(p.source, name.loc); - try p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot use \"{s}\" as an identifier here", .{original_name}); - } + try items.append(js_ast.ClauseItem{ + .alias = alias, + .alias_loc = alias_loc, + .name = name, + .original_name = original_name, + }); - try items.append(js_ast.ClauseItem{ - .alias = alias, - .alias_loc = alias_loc, - .name = name, - .original_name = original_name, - }); + if (p.lexer.token != .t_comma) { + break; + } - if (p.lexer.token != .t_comma) { - break; - } + if (p.lexer.has_newline_before) { + is_single_line = false; + } - if (p.lexer.has_newline_before) { - is_single_line = false; - } + try p.lexer.next(); - try p.lexer.next(); + if (p.lexer.has_newline_before) { + is_single_line = false; + } + } if (p.lexer.has_newline_before) { is_single_line = false; } - } - if (p.lexer.has_newline_before) { - is_single_line = false; + try p.lexer.expect(.t_close_brace); + return ImportClause{ .items = items.toOwnedSlice(), .is_single_line = is_single_line }; } - try p.lexer.expect(.t_close_brace); - return ImportClause{ .items = items.toOwnedSlice(), .is_single_line = is_single_line }; - } + pub fn forbidInitializers(p: *P, decls: []G.Decl, loop_type: string, is_var: bool) !void { + if (decls.len > 1) { + try p.log.addErrorFmt(p.source, decls[0].binding.loc, p.allocator, "for-{s} loops must have a single declaration", .{loop_type}); + } else if (decls.len == 1) { + if (decls[0].value) |value| { + if (is_var) { - pub fn forbidInitializers(p: *P, decls: []G.Decl, loop_type: string, is_var: bool) !void { - if (decls.len > 1) { - try p.log.addErrorFmt(p.source, decls[0].binding.loc, p.allocator, "for-{s} loops must have a single declaration", .{loop_type}); - } else if (decls.len == 1) { - if (decls[0].value) |value| { - if (is_var) { + // This is a weird special case. Initializers are allowed in "var" + // statements with identifier bindings. + return; + } - // This is a weird special case. Initializers are allowed in "var" - // statements with identifier bindings. - return; + try p.log.addErrorFmt(p.source, value.loc, p.allocator, "for-{s} loop variables cannot have an initializer", .{loop_type}); } - - try p.log.addErrorFmt(p.source, value.loc, p.allocator, "for-{s} loop variables cannot have an initializer", .{loop_type}); } } - } - pub fn parseExprOrLetStmt(p: *P, opts: *ParseStatementOptions) !ExprOrLetStmt { - var let_range = p.lexer.range(); - var raw = p.lexer.raw(); - if (p.lexer.token != .t_identifier or !strings.eql(raw, "let")) { - // Output.print("HI", .{}); - return ExprOrLetStmt{ .stmt_or_expr = js_ast.StmtOrExpr{ .expr = try p.parseExpr(.lowest) } }; - } + pub fn parseExprOrLetStmt(p: *P, opts: *ParseStatementOptions) !ExprOrLetStmt { + var let_range = p.lexer.range(); + var raw = p.lexer.raw(); + if (p.lexer.token != .t_identifier or !strings.eql(raw, "let")) { + // Output.print("HI", .{}); + return ExprOrLetStmt{ .stmt_or_expr = js_ast.StmtOrExpr{ .expr = try p.parseExpr(.lowest) } }; + } - try p.lexer.next(); + try p.lexer.next(); - switch (p.lexer.token) { - .t_identifier, .t_open_bracket, .t_open_brace => { - if (opts.lexical_decl == .allow_all or !p.lexer.has_newline_before or p.lexer.token == .t_open_bracket) { - if (opts.lexical_decl != .allow_all) { - try p.forbidLexicalDecl(let_range.loc); + switch (p.lexer.token) { + .t_identifier, .t_open_bracket, .t_open_brace => { + if (opts.lexical_decl == .allow_all or !p.lexer.has_newline_before or p.lexer.token == .t_open_bracket) { + if (opts.lexical_decl != .allow_all) { + try p.forbidLexicalDecl(let_range.loc); + } + + const decls = try p.parseAndDeclareDecls(.other, opts); + return ExprOrLetStmt{ + .stmt_or_expr = js_ast.StmtOrExpr{ + .stmt = p.s(S.Local{ + .kind = .k_let, + .decls = decls, + .is_export = opts.is_export, + }, let_range.loc), + }, + .decls = decls, + }; } + }, + else => {}, + } - const decls = try p.parseAndDeclareDecls(.other, opts); - return ExprOrLetStmt{ - .stmt_or_expr = js_ast.StmtOrExpr{ - .stmt = p.s(S.Local{ - .kind = .k_let, - .decls = decls, - .is_export = opts.is_export, - }, let_range.loc), - }, - .decls = decls, - }; - } - }, - else => {}, + const ref = p.storeNameInRef(raw) catch unreachable; + const expr = p.e(E.Identifier{ .ref = ref }, let_range.loc); + return ExprOrLetStmt{ .stmt_or_expr = js_ast.StmtOrExpr{ .expr = try p.parseSuffix(expr, .lowest, null, Expr.EFlags.none) } }; } - const ref = p.storeNameInRef(raw) catch unreachable; - const expr = p.e(E.Identifier{ .ref = ref }, let_range.loc); - return ExprOrLetStmt{ .stmt_or_expr = js_ast.StmtOrExpr{ .expr = try p.parseSuffix(expr, .lowest, null, Expr.EFlags.none) } }; - } - - pub fn requireInitializers(p: *P, decls: []G.Decl) !void { - for (decls) |decl| { - if (decl.value == null) { - switch (decl.binding.data) { - .b_identifier => |ident| { - const r = js_lexer.rangeOfIdentifier(p.source, decl.binding.loc); - try p.log.addRangeErrorFmt(p.source, r, p.allocator, "The constant \"{s}\" must be initialized", .{p.symbols.items[ident.ref.inner_index].original_name}); - // return;/ - }, - else => { - try p.log.addError(p.source, decl.binding.loc, "This constant must be initialized"); - }, + pub fn requireInitializers(p: *P, decls: []G.Decl) !void { + for (decls) |decl| { + if (decl.value == null) { + switch (decl.binding.data) { + .b_identifier => |ident| { + const r = js_lexer.rangeOfIdentifier(p.source, decl.binding.loc); + try p.log.addRangeErrorFmt(p.source, r, p.allocator, "The constant \"{s}\" must be initialized", .{p.symbols.items[ident.ref.inner_index].original_name}); + // return;/ + }, + else => { + try p.log.addError(p.source, decl.binding.loc, "This constant must be initialized"); + }, + } } } } - } - pub fn parseBinding(p: *P) anyerror!Binding { - var loc = p.lexer.loc(); + pub fn parseBinding(p: *P) anyerror!Binding { + var loc = p.lexer.loc(); - switch (p.lexer.token) { - .t_identifier => { - const name = p.lexer.identifier; - if ((p.fn_or_arrow_data_parse.allow_await != .allow_ident and strings.eqlComptime(name, "await")) or (p.fn_or_arrow_data_parse.allow_yield != .allow_ident and strings.eqlComptime(name, "yield"))) { - // TODO: add fmt to addRangeError - p.log.addRangeError(p.source, p.lexer.range(), "Cannot use \"yield\" or \"await\" here.") catch unreachable; - } + switch (p.lexer.token) { + .t_identifier => { + const name = p.lexer.identifier; + if ((p.fn_or_arrow_data_parse.allow_await != .allow_ident and strings.eqlComptime(name, "await")) or (p.fn_or_arrow_data_parse.allow_yield != .allow_ident and strings.eqlComptime(name, "yield"))) { + // TODO: add fmt to addRangeError + p.log.addRangeError(p.source, p.lexer.range(), "Cannot use \"yield\" or \"await\" here.") catch unreachable; + } - const ref = p.storeNameInRef(name) catch unreachable; - try p.lexer.next(); - return p.b(B.Identifier{ .ref = ref }, loc); - }, - .t_open_bracket => { - try p.lexer.next(); - var is_single_line = !p.lexer.has_newline_before; - var items = List(js_ast.ArrayBinding).init(p.allocator); - var has_spread = false; - - // "in" expressions are allowed - var old_allow_in = p.allow_in; - p.allow_in = true; - - while (p.lexer.token != .t_close_bracket) { - if (p.lexer.token == .t_comma) { - items.append(js_ast.ArrayBinding{ - .binding = Binding{ .data = Prefill.Data.BMissing, .loc = p.lexer.loc() }, - }) catch unreachable; - } else { - if (p.lexer.token == .t_dot_dot_dot) { - try p.lexer.next(); - has_spread = true; + const ref = p.storeNameInRef(name) catch unreachable; + try p.lexer.next(); + return p.b(B.Identifier{ .ref = ref }, loc); + }, + .t_open_bracket => { + try p.lexer.next(); + var is_single_line = !p.lexer.has_newline_before; + var items = List(js_ast.ArrayBinding).init(p.allocator); + var has_spread = false; + + // "in" expressions are allowed + var old_allow_in = p.allow_in; + p.allow_in = true; + + while (p.lexer.token != .t_close_bracket) { + if (p.lexer.token == .t_comma) { + items.append(js_ast.ArrayBinding{ + .binding = Binding{ .data = Prefill.Data.BMissing, .loc = p.lexer.loc() }, + }) catch unreachable; + } else { + if (p.lexer.token == .t_dot_dot_dot) { + try p.lexer.next(); + has_spread = true; - // This was a bug in the ES2015 spec that was fixed in ES2016 - if (p.lexer.token != .t_identifier) { - // p.markSyntaxFeature(compat.NestedRestBinding, p.lexer.Range()) + // This was a bug in the ES2015 spec that was fixed in ES2016 + if (p.lexer.token != .t_identifier) { + // p.markSyntaxFeature(compat.NestedRestBinding, p.lexer.Range()) + } } - } - const binding = try p.parseBinding(); + const binding = try p.parseBinding(); - var default_value: ?Expr = null; - if (!has_spread and p.lexer.token == .t_equals) { - try p.lexer.next(); - default_value = try p.parseExpr(.comma); + var default_value: ?Expr = null; + if (!has_spread and p.lexer.token == .t_equals) { + try p.lexer.next(); + default_value = try p.parseExpr(.comma); + } + + items.append(js_ast.ArrayBinding{ .binding = binding, .default_value = default_value }) catch unreachable; + + // Commas after spread elements are not allowed + if (has_spread and p.lexer.token == .t_comma) { + p.log.addRangeError(p.source, p.lexer.range(), "Unexpected \",\" after rest pattern") catch unreachable; + fail(); + } } - items.append(js_ast.ArrayBinding{ .binding = binding, .default_value = default_value }) catch unreachable; + if (p.lexer.token != .t_comma) { + break; + } - // Commas after spread elements are not allowed - if (has_spread and p.lexer.token == .t_comma) { - p.log.addRangeError(p.source, p.lexer.range(), "Unexpected \",\" after rest pattern") catch unreachable; - fail(); + if (p.lexer.has_newline_before) { + is_single_line = false; } - } + try p.lexer.next(); - if (p.lexer.token != .t_comma) { - break; + if (p.lexer.has_newline_before) { + is_single_line = false; + } } - if (p.lexer.has_newline_before) { - is_single_line = false; - } - try p.lexer.next(); + p.allow_in = old_allow_in; if (p.lexer.has_newline_before) { is_single_line = false; } - } + try p.lexer.expect(.t_close_bracket); + return p.b(B.Array{ + .items = items.toOwnedSlice(), + .has_spread = has_spread, + .is_single_line = is_single_line, + }, loc); + }, + .t_open_brace => { + // p.markSyntaxFeature(compat.Destructuring, p.lexer.Range()) + try p.lexer.next(); + var is_single_line = false; + var properties = List(js_ast.B.Property).init(p.allocator); - p.allow_in = old_allow_in; + // "in" expressions are allowed + var old_allow_in = p.allow_in; + p.allow_in = true; - if (p.lexer.has_newline_before) { - is_single_line = false; - } - try p.lexer.expect(.t_close_bracket); - return p.b(B.Array{ - .items = items.toOwnedSlice(), - .has_spread = has_spread, - .is_single_line = is_single_line, - }, loc); - }, - .t_open_brace => { - // p.markSyntaxFeature(compat.Destructuring, p.lexer.Range()) - try p.lexer.next(); - var is_single_line = false; - var properties = List(js_ast.B.Property).init(p.allocator); + while (p.lexer.token != .t_close_brace) { + var property = try p.parsePropertyBinding(); + properties.append(property) catch unreachable; - // "in" expressions are allowed - var old_allow_in = p.allow_in; - p.allow_in = true; + // Commas after spread elements are not allowed + if (property.flags.is_spread and p.lexer.token == .t_comma) { + p.log.addRangeError(p.source, p.lexer.range(), "Unexpected \",\" after rest pattern") catch unreachable; + fail(); + } - while (p.lexer.token != .t_close_brace) { - var property = try p.parsePropertyBinding(); - properties.append(property) catch unreachable; + if (p.lexer.token != .t_comma) { + break; + } - // Commas after spread elements are not allowed - if (property.flags.is_spread and p.lexer.token == .t_comma) { - p.log.addRangeError(p.source, p.lexer.range(), "Unexpected \",\" after rest pattern") catch unreachable; - fail(); + if (p.lexer.has_newline_before) { + is_single_line = false; + } + try p.lexer.next(); + if (p.lexer.has_newline_before) { + is_single_line = false; + } } - if (p.lexer.token != .t_comma) { - break; - } + p.allow_in = old_allow_in; if (p.lexer.has_newline_before) { is_single_line = false; } - try p.lexer.next(); - if (p.lexer.has_newline_before) { - is_single_line = false; - } - } - - p.allow_in = old_allow_in; + try p.lexer.expect(.t_close_brace); - if (p.lexer.has_newline_before) { - is_single_line = false; - } - try p.lexer.expect(.t_close_brace); + return p.b(B.Object{ + .properties = properties.toOwnedSlice(), + .is_single_line = is_single_line, + }, loc); + }, + else => {}, + } - return p.b(B.Object{ - .properties = properties.toOwnedSlice(), - .is_single_line = is_single_line, - }, loc); - }, - else => {}, + try p.lexer.expect(.t_identifier); + return Binding{ .loc = loc, .data = Prefill.Data.BMissing }; } - try p.lexer.expect(.t_identifier); - return Binding{ .loc = loc, .data = Prefill.Data.BMissing }; - } + pub fn parsePropertyBinding(p: *P) anyerror!B.Property { + var key: js_ast.Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; + var is_computed = false; - pub fn parsePropertyBinding(p: *P) anyerror!B.Property { - var key: js_ast.Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; - var is_computed = false; + switch (p.lexer.token) { + .t_dot_dot_dot => { + try p.lexer.next(); + const value = p.b(B.Identifier{ + .ref = p.storeNameInRef(p.lexer.identifier) catch unreachable, + }, p.lexer.loc()); + try p.lexer.expect(.t_identifier); + return B.Property{ + // This "key" diverges from esbuild, but is due to Go always having a zero value. + .key = Expr{ .data = Prefill.Data.EMissing, .loc = logger.Loc{} }, - switch (p.lexer.token) { - .t_dot_dot_dot => { - try p.lexer.next(); - const value = p.b(B.Identifier{ - .ref = p.storeNameInRef(p.lexer.identifier) catch unreachable, - }, p.lexer.loc()); - try p.lexer.expect(.t_identifier); - return B.Property{ - // This "key" diverges from esbuild, but is due to Go always having a zero value. - .key = Expr{ .data = Prefill.Data.EMissing, .loc = logger.Loc{} }, + .flags = Flags.Property{ .is_spread = true }, + .value = value, + }; + }, + .t_numeric_literal => { + key = p.e(E.Number{ + .value = p.lexer.number, + }, p.lexer.loc()); + // check for legacy octal literal + try p.lexer.next(); + }, + .t_string_literal => { + key = try p.parseStringLiteral(); + }, + .t_big_integer_literal => { + key = p.e(E.BigInt{ + .value = p.lexer.identifier, + }, p.lexer.loc()); + // p.markSyntaxFeature(compat.BigInt, p.lexer.Range()) + try p.lexer.next(); + }, + .t_open_bracket => { + is_computed = true; + try p.lexer.next(); + key = try p.parseExpr(.comma); + try p.lexer.expect(.t_close_bracket); + }, + else => { + const name = p.lexer.identifier; + const loc = p.lexer.loc(); - .flags = Flags.Property{ .is_spread = true }, - .value = value, - }; - }, - .t_numeric_literal => { - key = p.e(E.Number{ - .value = p.lexer.number, - }, p.lexer.loc()); - // check for legacy octal literal - try p.lexer.next(); - }, - .t_string_literal => { - key = try p.parseStringLiteral(); - }, - .t_big_integer_literal => { - key = p.e(E.BigInt{ - .value = p.lexer.identifier, - }, p.lexer.loc()); - // p.markSyntaxFeature(compat.BigInt, p.lexer.Range()) - try p.lexer.next(); - }, - .t_open_bracket => { - is_computed = true; - try p.lexer.next(); - key = try p.parseExpr(.comma); - try p.lexer.expect(.t_close_bracket); - }, - else => { - const name = p.lexer.identifier; - const loc = p.lexer.loc(); + const e_str = E.String{ .utf8 = name }; - const e_str = E.String{ .utf8 = name }; + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); + } - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); - } + try p.lexer.next(); - try p.lexer.next(); + const ref = p.storeNameInRef(name) catch unreachable; - const ref = p.storeNameInRef(name) catch unreachable; + key = p.e(e_str, loc); - key = p.e(e_str, loc); + if (p.lexer.token != .t_colon and p.lexer.token != .t_open_paren) { + const value = p.b(B.Identifier{ .ref = ref }, loc); + var default_value: ?Expr = null; + if (p.lexer.token == .t_equals) { + try p.lexer.next(); + default_value = try p.parseExpr(.comma); + } - if (p.lexer.token != .t_colon and p.lexer.token != .t_open_paren) { - const value = p.b(B.Identifier{ .ref = ref }, loc); - var default_value: ?Expr = null; - if (p.lexer.token == .t_equals) { - try p.lexer.next(); - default_value = try p.parseExpr(.comma); + return B.Property{ + .key = key, + .value = value, + .default_value = default_value, + }; } + }, + } - return B.Property{ - .key = key, - .value = value, - .default_value = default_value, - }; - } - }, - } + try p.lexer.expect(.t_colon); + const value = try p.parseBinding(); - try p.lexer.expect(.t_colon); - const value = try p.parseBinding(); + var default_value: ?Expr = null; + if (p.lexer.token == .t_equals) { + try p.lexer.next(); + default_value = try p.parseExpr(.comma); + } - var default_value: ?Expr = null; - if (p.lexer.token == .t_equals) { - try p.lexer.next(); - default_value = try p.parseExpr(.comma); + return B.Property{ + .flags = Flags.Property{ + .is_computed = is_computed, + }, + .key = key, + .value = value, + .default_value = default_value, + }; } - return B.Property{ - .flags = Flags.Property{ - .is_computed = is_computed, - }, - .key = key, - .value = value, - .default_value = default_value, - }; - } + pub fn parseAndDeclareDecls(p: *P, kind: Symbol.Kind, opts: *ParseStatementOptions) anyerror![]G.Decl { + var decls = List(G.Decl).init(p.allocator); - pub fn parseAndDeclareDecls(p: *P, kind: Symbol.Kind, opts: *ParseStatementOptions) anyerror![]G.Decl { - var decls = List(G.Decl).init(p.allocator); + while (true) { + // Forbid "let let" and "const let" but not "var let" + if ((kind == .other or kind == .cconst) and p.lexer.isContextualKeyword("let")) { + p.log.addRangeError(p.source, p.lexer.range(), "Cannot use \"let\" as an identifier here") catch unreachable; + } - while (true) { - // Forbid "let let" and "const let" but not "var let" - if ((kind == .other or kind == .cconst) and p.lexer.isContextualKeyword("let")) { - p.log.addRangeError(p.source, p.lexer.range(), "Cannot use \"let\" as an identifier here") catch unreachable; - } + var value: ?js_ast.Expr = null; + var local = try p.parseBinding(); + p.declareBinding(kind, &local, opts) catch unreachable; + + // Skip over types + if (is_typescript_enabled) { + // "let foo!" + var is_definite_assignment_assertion = p.lexer.token == .t_exclamation; + if (is_definite_assignment_assertion) { + try p.lexer.next(); + } - var value: ?js_ast.Expr = null; - var local = try p.parseBinding(); - p.declareBinding(kind, &local, opts) catch unreachable; + // "let foo: number" + if (is_definite_assignment_assertion or p.lexer.token == .t_colon) { + try p.lexer.expect(.t_colon); + try p.skipTypeScriptType(.lowest); + } - // Skip over types - if (p.options.ts) { - // "let foo!" - var is_definite_assignment_assertion = p.lexer.token == .t_exclamation; - if (is_definite_assignment_assertion) { - try p.lexer.next(); + // If we end with a .t_close_paren, that's a bug. It means we aren't following the last parenthese + if (isDebug) { + std.debug.assert(p.lexer.token != .t_close_paren); + } } - // "let foo: number" - if (is_definite_assignment_assertion or p.lexer.token == .t_colon) { - try p.lexer.expect(.t_colon); - try p.skipTypeScriptType(.lowest); + if (p.lexer.token == .t_equals) { + try p.lexer.next(); + value = try p.parseExpr(.comma); } - // If we end with a .t_close_paren, that's a bug. It means we aren't following the last parenthese - if (isDebug) { - std.debug.assert(p.lexer.token != .t_close_paren); - } - } + decls.append(G.Decl{ + .binding = local, + .value = value, + }) catch unreachable; - if (p.lexer.token == .t_equals) { + if (p.lexer.token != .t_comma) { + break; + } try p.lexer.next(); - value = try p.parseExpr(.comma); } - decls.append(G.Decl{ - .binding = local, - .value = value, - }) catch unreachable; + return decls.items; + } - if (p.lexer.token != .t_comma) { - break; + pub fn parseTypescriptEnumStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) anyerror!Stmt { + try p.lexer.expect(.t_enum); + const name_loc = p.lexer.loc(); + const name_text = p.lexer.identifier; + try p.lexer.expect(.t_identifier); + var name = LocRef{ .loc = name_loc, .ref = Ref.None }; + var arg_ref = Ref.None; + if (!opts.is_typescript_declare) { + name.ref = try p.declareSymbol(.ts_enum, name_loc, name_text); + _ = try p.pushScopeForParsePass(.entry, loc); } - try p.lexer.next(); - } - return decls.items; - } + try p.lexer.expect(.t_open_brace); - pub fn parseTypescriptEnumStmt(p: *P, loc: logger.Loc, opts: *ParseStatementOptions) anyerror!Stmt { - try p.lexer.expect(.t_enum); - const name_loc = p.lexer.loc(); - const name_text = p.lexer.identifier; - try p.lexer.expect(.t_identifier); - var name = LocRef{ .loc = name_loc, .ref = Ref.None }; - var arg_ref = Ref.None; - if (!opts.is_typescript_declare) { - name.ref = try p.declareSymbol(.ts_enum, name_loc, name_text); - _ = try p.pushScopeForParsePass(.entry, loc); - } + var values = std.ArrayList(js_ast.EnumValue).init(p.allocator); + while (p.lexer.token != .t_close_brace) { + var value = js_ast.EnumValue{ .loc = p.lexer.loc(), .ref = Ref.None, .name = undefined, .value = null }; + var needs_symbol = false; + + // Parse the name + if (p.lexer.token == .t_string_literal) { + value.name = p.lexer.toEString(); + } else if (p.lexer.isIdentifierOrKeyword()) { + value.name = E.String{ .utf8 = p.lexer.identifier }; + needs_symbol = true; + } else { + try p.lexer.expect(.t_identifier); + } + try p.lexer.next(); - try p.lexer.expect(.t_open_brace); + // Identifiers can be referenced by other values - var values = std.ArrayList(js_ast.EnumValue).init(p.allocator); - while (p.lexer.token != .t_close_brace) { - var value = js_ast.EnumValue{ .loc = p.lexer.loc(), .ref = Ref.None, .name = undefined, .value = null }; - var needs_symbol = false; + if (!opts.is_typescript_declare and needs_symbol) { + value.ref = try p.declareSymbol(.other, value.loc, try value.name.string(p.allocator)); + } - // Parse the name - if (p.lexer.token == .t_string_literal) { - value.name = p.lexer.toEString(); - } else if (p.lexer.isIdentifierOrKeyword()) { - value.name = E.String{ .utf8 = p.lexer.identifier }; - needs_symbol = true; - } else { - try p.lexer.expect(.t_identifier); - } - try p.lexer.next(); + // Parse the initializer + if (p.lexer.token == .t_equals) { + try p.lexer.next(); + value.value = try p.parseExpr(.comma); + } - // Identifiers can be referenced by other values + values.append(value) catch unreachable; - if (!opts.is_typescript_declare and needs_symbol) { - value.ref = try p.declareSymbol(.other, value.loc, try value.name.string(p.allocator)); - } + if (p.lexer.token != .t_comma and p.lexer.token != .t_semicolon) { + break; + } - // Parse the initializer - if (p.lexer.token == .t_equals) { try p.lexer.next(); - value.value = try p.parseExpr(.comma); - } - - values.append(value) catch unreachable; - - if (p.lexer.token != .t_comma and p.lexer.token != .t_semicolon) { - break; } - try p.lexer.next(); - } + if (!opts.is_typescript_declare) { + // Avoid a collision with the enum closure argument variable if the + // enum exports a symbol with the same name as the enum itself: + // + // enum foo { + // foo = 123, + // bar = foo, + // } + // + // TypeScript generates the following code in this case: + // + // var foo; + // (function (foo) { + // foo[foo["foo"] = 123] = "foo"; + // foo[foo["bar"] = 123] = "bar"; + // })(foo || (foo = {})); + // + // Whereas in this case: + // + // enum foo { + // bar = foo as any, + // } + // + // TypeScript generates the following code: + // + // var foo; + // (function (foo) { + // foo[foo["bar"] = foo] = "bar"; + // })(foo || (foo = {})); + // + if (p.current_scope.members.contains(name_text)) { + // Add a "_" to make tests easier to read, since non-bundler tests don't + // run the renamer. For external-facing things the renamer will avoid + // collisions automatically so this isn't important for correctness. + arg_ref = p.newSymbol(.hoisted, strings.cat(p.allocator, "_", name_text) catch unreachable) catch unreachable; + p.current_scope.generated.append(arg_ref) catch unreachable; + } else { + arg_ref = p.declareSymbol(.hoisted, name_loc, name_text) catch unreachable; + } - if (!opts.is_typescript_declare) { - // Avoid a collision with the enum closure argument variable if the - // enum exports a symbol with the same name as the enum itself: - // - // enum foo { - // foo = 123, - // bar = foo, - // } - // - // TypeScript generates the following code in this case: - // - // var foo; - // (function (foo) { - // foo[foo["foo"] = 123] = "foo"; - // foo[foo["bar"] = 123] = "bar"; - // })(foo || (foo = {})); - // - // Whereas in this case: - // - // enum foo { - // bar = foo as any, - // } - // - // TypeScript generates the following code: - // - // var foo; - // (function (foo) { - // foo[foo["bar"] = foo] = "bar"; - // })(foo || (foo = {})); - // - if (p.current_scope.members.contains(name_text)) { - // Add a "_" to make tests easier to read, since non-bundler tests don't - // run the renamer. For external-facing things the renamer will avoid - // collisions automatically so this isn't important for correctness. - arg_ref = p.newSymbol(.hoisted, strings.cat(p.allocator, "_", name_text) catch unreachable) catch unreachable; - p.current_scope.generated.append(arg_ref) catch unreachable; - } else { - arg_ref = p.declareSymbol(.hoisted, name_loc, name_text) catch unreachable; + p.popScope(); } - p.popScope(); - } + try p.lexer.expect(.t_close_brace); - try p.lexer.expect(.t_close_brace); + if (opts.is_typescript_declare) { + if (opts.is_namespace_scope and opts.is_export) { + p.has_non_local_export_declare_inside_namespace = true; + } - if (opts.is_typescript_declare) { - if (opts.is_namespace_scope and opts.is_export) { - p.has_non_local_export_declare_inside_namespace = true; + return p.s(S.TypeScript{}, loc); } - return p.s(S.TypeScript{}, loc); + return p.s(S.Enum{ + .name = name, + .arg = arg_ref, + .values = values.toOwnedSlice(), + .is_export = opts.is_export, + }, loc); } - return p.s(S.Enum{ - .name = name, - .arg = arg_ref, - .values = values.toOwnedSlice(), - .is_export = opts.is_export, - }, loc); - } + pub fn parseExportClause(p: *P) !ExportClauseResult { + var items = List(js_ast.ClauseItem).initCapacity(p.allocator, 1) catch unreachable; + try p.lexer.expect(.t_open_brace); + var is_single_line = !p.lexer.has_newline_before; + var first_non_identifier_loc = logger.Loc{ .start = 0 }; - pub fn parseExportClause(p: *P) !ExportClauseResult { - var items = List(js_ast.ClauseItem).initCapacity(p.allocator, 1) catch unreachable; - try p.lexer.expect(.t_open_brace); - var is_single_line = !p.lexer.has_newline_before; - var first_non_identifier_loc = logger.Loc{ .start = 0 }; + while (p.lexer.token != .t_close_brace) { + var alias = try p.parseClauseAlias("export"); + var alias_loc = p.lexer.loc(); - while (p.lexer.token != .t_close_brace) { - var alias = try p.parseClauseAlias("export"); - var alias_loc = p.lexer.loc(); + var name = LocRef{ + .loc = alias_loc, + .ref = p.storeNameInRef(alias) catch unreachable, + }; + var original_name = alias; - var name = LocRef{ - .loc = alias_loc, - .ref = p.storeNameInRef(alias) catch unreachable, - }; - var original_name = alias; + // The name can actually be a keyword if we're really an "export from" + // statement. However, we won't know until later. Allow keywords as + // identifiers for now and throw an error later if there's no "from". + // + // // This is fine + // export { default } from 'path' + // + // // This is a syntax error + // export { default } + // + if (p.lexer.token != .t_identifier and first_non_identifier_loc.start == 0) { + first_non_identifier_loc = p.lexer.loc(); + } + try p.lexer.next(); - // The name can actually be a keyword if we're really an "export from" - // statement. However, we won't know until later. Allow keywords as - // identifiers for now and throw an error later if there's no "from". - // - // // This is fine - // export { default } from 'path' - // - // // This is a syntax error - // export { default } - // - if (p.lexer.token != .t_identifier and first_non_identifier_loc.start == 0) { - first_non_identifier_loc = p.lexer.loc(); - } - try p.lexer.next(); + if (p.lexer.isContextualKeyword("as")) { + try p.lexer.next(); + alias = try p.parseClauseAlias("export"); + alias_loc = p.lexer.loc(); - if (p.lexer.isContextualKeyword("as")) { - try p.lexer.next(); - alias = try p.parseClauseAlias("export"); - alias_loc = p.lexer.loc(); + try p.lexer.next(); + } - try p.lexer.next(); - } + items.append(js_ast.ClauseItem{ + .alias = alias, + .alias_loc = alias_loc, + .name = name, + .original_name = original_name, + }) catch unreachable; - items.append(js_ast.ClauseItem{ - .alias = alias, - .alias_loc = alias_loc, - .name = name, - .original_name = original_name, - }) catch unreachable; + // we're done if there's no comma + if (p.lexer.token != .t_comma) { + break; + } - // we're done if there's no comma - if (p.lexer.token != .t_comma) { - break; + if (p.lexer.has_newline_before) { + is_single_line = false; + } + try p.lexer.next(); + if (p.lexer.has_newline_before) { + is_single_line = false; + } } if (p.lexer.has_newline_before) { is_single_line = false; } - try p.lexer.next(); - if (p.lexer.has_newline_before) { - is_single_line = false; - } - } + try p.lexer.expect(.t_close_brace); - if (p.lexer.has_newline_before) { - is_single_line = false; - } - try p.lexer.expect(.t_close_brace); + // Throw an error here if we found a keyword earlier and this isn't an + // "export from" statement after all + if (first_non_identifier_loc.start != 0 and !p.lexer.isContextualKeyword("from")) { + const r = js_lexer.rangeOfIdentifier(p.source, first_non_identifier_loc); + try p.lexer.addRangeError(r, "Expected identifier but found \"{s}\"", .{p.source.textForRange(r)}, true); + } - // Throw an error here if we found a keyword earlier and this isn't an - // "export from" statement after all - if (first_non_identifier_loc.start != 0 and !p.lexer.isContextualKeyword("from")) { - const r = js_lexer.rangeOfIdentifier(p.source, first_non_identifier_loc); - try p.lexer.addRangeError(r, "Expected identifier but found \"{s}\"", .{p.source.textForRange(r)}, true); + return ExportClauseResult{ + .clauses = items.items, + .is_single_line = is_single_line, + }; } - return ExportClauseResult{ - .clauses = items.items, - .is_single_line = is_single_line, - }; - } + pub fn parsePath(p: *P) !ParsedPath { + var path = ParsedPath{ + .loc = p.lexer.loc(), + .text = p.lexer.string_literal_slice, + }; - pub fn parsePath(p: *P) !ParsedPath { - var path = ParsedPath{ - .loc = p.lexer.loc(), - .text = p.lexer.string_literal_slice, - }; + if (p.lexer.token == .t_no_substitution_template_literal) { + try p.lexer.next(); + } else { + try p.lexer.expect(.t_string_literal); + } - if (p.lexer.token == .t_no_substitution_template_literal) { - try p.lexer.next(); - } else { - try p.lexer.expect(.t_string_literal); + return path; } - return path; - } - - // TODO: - pub fn checkForNonBMPCodePoint(p: *P, loc: logger.Loc, name: string) void {} + // TODO: + pub fn checkForNonBMPCodePoint(p: *P, loc: logger.Loc, name: string) void {} - pub fn parseStmtsUpTo(p: *P, eend: js_lexer.T, _opts: *ParseStatementOptions) ![]Stmt { - var opts = _opts.*; - var stmts = StmtList.init(p.allocator); + pub fn parseStmtsUpTo(p: *P, eend: js_lexer.T, _opts: *ParseStatementOptions) ![]Stmt { + var opts = _opts.*; + var stmts = StmtList.init(p.allocator); - var returnWithoutSemicolonStart: i32 = -1; - opts.lexical_decl = .allow_all; - var isDirectivePrologue = true; + var returnWithoutSemicolonStart: i32 = -1; + opts.lexical_decl = .allow_all; + var isDirectivePrologue = true; - while (true) { - for (p.lexer.comments_to_preserve_before.items) |comment| { - try stmts.append(p.s(S.Comment{ - .text = comment.text, - }, p.lexer.loc())); - } + while (true) { + for (p.lexer.comments_to_preserve_before.items) |comment| { + try stmts.append(p.s(S.Comment{ + .text = comment.text, + }, p.lexer.loc())); + } - if (p.lexer.token == eend) { - break; - } + if (p.lexer.token == eend) { + break; + } - var current_opts = opts; - var stmt = try p.parseStmt(¤t_opts); + var current_opts = opts; + var stmt = try p.parseStmt(¤t_opts); - // Skip TypeScript types entirely - if (p.options.ts) { - switch (stmt.data) { - .s_type_script => { - continue; - }, - else => {}, + // Skip TypeScript types entirely + if (is_typescript_enabled) { + switch (stmt.data) { + .s_type_script => { + continue; + }, + else => {}, + } } - } - // Parse one or more directives at the beginning - if (isDirectivePrologue) { - isDirectivePrologue = false; - switch (stmt.data) { - .s_expr => |expr| { - switch (expr.value.data) { - .e_string => |str| { - if (!str.prefer_template) { - isDirectivePrologue = true; - - if (strings.eqlUtf16("use strict", str.value)) { - // Track "use strict" directives - p.current_scope.strict_mode = .explicit_strict_mode; - } else if (strings.eqlUtf16("use asm", str.value)) { - stmt.data = Prefill.Data.SEmpty; + // Parse one or more directives at the beginning + if (isDirectivePrologue) { + isDirectivePrologue = false; + switch (stmt.data) { + .s_expr => |expr| { + switch (expr.value.data) { + .e_string => |str| { + if (!str.prefer_template) { + isDirectivePrologue = true; + + if (strings.eqlUtf16("use strict", str.value)) { + // Track "use strict" directives + p.current_scope.strict_mode = .explicit_strict_mode; + } else if (strings.eqlUtf16("use asm", str.value)) { + stmt.data = Prefill.Data.SEmpty; + } } - } - }, - else => {}, - } - }, - else => {}, + }, + else => {}, + } + }, + else => {}, + } } - } - try stmts.append(stmt); - - // Warn about ASI and return statements. Here's an example of code with - // this problem: https://github.com/rollup/rollup/issues/3729 - if (!p.options.suppress_warnings_about_weird_code) { - var needsCheck = true; - switch (stmt.data) { - .s_return => |ret| { - if (ret.value == null and !p.latest_return_had_semicolon) { - returnWithoutSemicolonStart = stmt.loc.start; - needsCheck = false; - } - }, - else => {}, - } + try stmts.append(stmt); - if (needsCheck and returnWithoutSemicolonStart != -1) { + // Warn about ASI and return statements. Here's an example of code with + // this problem: https://github.com/rollup/rollup/issues/3729 + if (!p.options.suppress_warnings_about_weird_code) { + var needsCheck = true; switch (stmt.data) { - .s_expr => |exp| { - try p.log.addWarning( - p.source, - logger.Loc{ .start = returnWithoutSemicolonStart + 6 }, - "The following expression is not returned because of an automatically-inserted semicolon", - ); + .s_return => |ret| { + if (ret.value == null and !p.latest_return_had_semicolon) { + returnWithoutSemicolonStart = stmt.loc.start; + needsCheck = false; + } }, else => {}, } - returnWithoutSemicolonStart = -1; + if (needsCheck and returnWithoutSemicolonStart != -1) { + switch (stmt.data) { + .s_expr => |exp| { + try p.log.addWarning( + p.source, + logger.Loc{ .start = returnWithoutSemicolonStart + 6 }, + "The following expression is not returned because of an automatically-inserted semicolon", + ); + }, + else => {}, + } + + returnWithoutSemicolonStart = -1; + } } } - } - - return stmts.toOwnedSlice(); - } - pub fn markStrictModeFeature(p: *P, feature: StrictModeFeature, r: logger.Range, detail: string) !void { - var text: string = undefined; - var can_be_transformed = false; - switch (feature) { - .with_statement => { - text = "With statements"; - }, - .delete_bare_name => { - text = "\"delete\" of a bare identifier"; - }, - .for_in_var_init => { - text = "Variable initializers within for-in loops"; - can_be_transformed = true; - }, - .eval_or_arguments => { - text = try std.fmt.allocPrint(p.allocator, "Declarations with the name {s}", .{detail}); - }, - .reserved_word => { - text = try std.fmt.allocPrint(p.allocator, "{s} is a reserved word and", .{detail}); - }, - .legacy_octal_literal => { - text = "Legacy octal literals"; - }, - .legacy_octal_escape => { - text = "Legacy octal escape sequences"; - }, - .if_else_function_stmt => { - text = "Function declarations inside if statements"; - }, - // else => { - // text = "This feature"; - // }, + return stmts.toOwnedSlice(); } - var scope = p.current_scope; - if (p.isStrictMode()) { - var why: string = ""; - var notes: []logger.Data = &[_]logger.Data{}; - var where: logger.Range = logger.Range.None; - switch (scope.strict_mode) { - .implicit_strict_mode_import => { - where = p.es6_import_keyword; + pub fn markStrictModeFeature(p: *P, feature: StrictModeFeature, r: logger.Range, detail: string) !void { + var text: string = undefined; + var can_be_transformed = false; + switch (feature) { + .with_statement => { + text = "With statements"; }, - .implicit_strict_mode_export => { - where = p.es6_export_keyword; + .delete_bare_name => { + text = "\"delete\" of a bare identifier"; }, - .implicit_strict_mode_top_level_await => { - where = p.top_level_await_keyword; + .for_in_var_init => { + text = "Variable initializers within for-in loops"; + can_be_transformed = true; }, - .implicit_strict_mode_class => { - why = "All code inside a class is implicitly in strict mode"; - where = p.enclosing_class_keyword; + .eval_or_arguments => { + text = try std.fmt.allocPrint(p.allocator, "Declarations with the name {s}", .{detail}); }, - else => {}, - } - if (why.len == 0) { - why = try std.fmt.allocPrint(p.allocator, "This file is implicitly in strict mode because of the \"{s}\" keyword here", .{p.source.textForRange(where)}); + .reserved_word => { + text = try std.fmt.allocPrint(p.allocator, "{s} is a reserved word and", .{detail}); + }, + .legacy_octal_literal => { + text = "Legacy octal literals"; + }, + .legacy_octal_escape => { + text = "Legacy octal escape sequences"; + }, + .if_else_function_stmt => { + text = "Function declarations inside if statements"; + }, + // else => { + // text = "This feature"; + // }, } - try p.log.addRangeErrorWithNotes(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} cannot be used in strict mode", .{text}), &([_]logger.Data{logger.rangeData(p.source, where, why)})); - } else if (!can_be_transformed and p.isStrictModeOutputFormat()) { - try p.log.addRangeError(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} cannot be used with \"esm\" due to strict mode", .{text})); + var scope = p.current_scope; + if (p.isStrictMode()) { + var why: string = ""; + var notes: []logger.Data = &[_]logger.Data{}; + var where: logger.Range = logger.Range.None; + switch (scope.strict_mode) { + .implicit_strict_mode_import => { + where = p.es6_import_keyword; + }, + .implicit_strict_mode_export => { + where = p.es6_export_keyword; + }, + .implicit_strict_mode_top_level_await => { + where = p.top_level_await_keyword; + }, + .implicit_strict_mode_class => { + why = "All code inside a class is implicitly in strict mode"; + where = p.enclosing_class_keyword; + }, + else => {}, + } + if (why.len == 0) { + why = try std.fmt.allocPrint(p.allocator, "This file is implicitly in strict mode because of the \"{s}\" keyword here", .{p.source.textForRange(where)}); + } + + try p.log.addRangeErrorWithNotes(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} cannot be used in strict mode", .{text}), &([_]logger.Data{logger.rangeData(p.source, where, why)})); + } else if (!can_be_transformed and p.isStrictModeOutputFormat()) { + try p.log.addRangeError(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} cannot be used with \"esm\" due to strict mode", .{text})); + } } - } - pub fn isStrictMode(p: *P) bool { - return p.current_scope.strict_mode != .sloppy_mode; - } + pub fn isStrictMode(p: *P) bool { + return p.current_scope.strict_mode != .sloppy_mode; + } - pub fn isStrictModeOutputFormat(p: *P) bool { - return true; - } + pub fn isStrictModeOutputFormat(p: *P) bool { + return true; + } - pub fn declareCommonJSSymbol(p: *P, kind: Symbol.Kind, name: string) !Ref { - const member = p.module_scope.members.get(name); + pub fn declareCommonJSSymbol(p: *P, kind: Symbol.Kind, name: string) !Ref { + const member = p.module_scope.members.get(name); - // If the code declared this symbol using "var name", then this is actually - // not a collision. For example, node will let you do this: - // - // var exports; - // module.exports.foo = 123; - // console.log(exports.foo); - // - // This works because node's implementation of CommonJS wraps the entire - // source file like this: - // - // (function(require, exports, module, __filename, __dirname) { - // var exports; - // module.exports.foo = 123; - // console.log(exports.foo); - // }) - // - // Both the "exports" argument and "var exports" are hoisted variables, so - // they don't collide. - if (member) |_member| { - if (p.symbols.items[_member.ref.inner_index].kind == .hoisted and kind == .hoisted and !p.has_es_module_syntax) { - return _member.ref; + // If the code declared this symbol using "var name", then this is actually + // not a collision. For example, node will let you do this: + // + // var exports; + // module.exports.foo = 123; + // console.log(exports.foo); + // + // This works because node's implementation of CommonJS wraps the entire + // source file like this: + // + // (function(require, exports, module, __filename, __dirname) { + // var exports; + // module.exports.foo = 123; + // console.log(exports.foo); + // }) + // + // Both the "exports" argument and "var exports" are hoisted variables, so + // they don't collide. + if (member) |_member| { + if (p.symbols.items[_member.ref.inner_index].kind == .hoisted and kind == .hoisted and !p.has_es_module_syntax) { + return _member.ref; + } } - } - // Create a new symbol if we didn't merge with an existing one above - const ref = try p.newSymbol(kind, name); + // Create a new symbol if we didn't merge with an existing one above + const ref = try p.newSymbol(kind, name); + + if (member == null) { + try p.module_scope.members.put(name, Scope.Member{ .ref = ref, .loc = logger.Loc.Empty }); + return ref; + } - if (member == null) { - try p.module_scope.members.put(name, Scope.Member{ .ref = ref, .loc = logger.Loc.Empty }); + // If the variable was declared, then it shadows this symbol. The code in + // this module will be unable to reference this symbol. However, we must + // still add the symbol to the scope so it gets minified (automatically- + // generated code may still reference the symbol). + try p.module_scope.generated.append(ref); return ref; } - // If the variable was declared, then it shadows this symbol. The code in - // this module will be unable to reference this symbol. However, we must - // still add the symbol to the scope so it gets minified (automatically- - // generated code may still reference the symbol). - try p.module_scope.generated.append(ref); - return ref; - } - - pub fn declareSymbol(p: *P, kind: Symbol.Kind, loc: logger.Loc, name: string) !Ref { - // p.checkForNonBMPCodePoint(loc, name) + pub fn declareSymbol(p: *P, kind: Symbol.Kind, loc: logger.Loc, name: string) !Ref { + // p.checkForNonBMPCodePoint(loc, name) - // Forbid declaring a symbol with a reserved word in strict mode - if (p.isStrictMode() and js_lexer.StrictModeReservedWords.has(name)) { - try p.markStrictModeFeature(.reserved_word, js_lexer.rangeOfIdentifier(p.source, loc), name); - } + // Forbid declaring a symbol with a reserved word in strict mode + if (p.isStrictMode() and js_lexer.StrictModeReservedWords.has(name)) { + try p.markStrictModeFeature(.reserved_word, js_lexer.rangeOfIdentifier(p.source, loc), name); + } - // Allocate a new symbol - var ref = try p.newSymbol(kind, name); + // Allocate a new symbol + var ref = try p.newSymbol(kind, name); - const scope = p.current_scope; - var entry = try scope.members.getOrPut(name); - if (entry.found_existing) { - const existing = entry.entry.value; - var symbol: Symbol = p.symbols.items[@intCast(usize, existing.ref.inner_index)]; + const scope = p.current_scope; + var entry = try scope.members.getOrPut(name); + if (entry.found_existing) { + const existing = entry.entry.value; + var symbol: Symbol = p.symbols.items[@intCast(usize, existing.ref.inner_index)]; - switch (p.canMergeSymbols(scope, symbol.kind, kind)) { - .forbidden => { - const r = js_lexer.rangeOfIdentifier(p.source, loc); - var notes: []logger.Data = &[_]logger.Data{}; - notes = &([_]logger.Data{logger.rangeData(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} has already been declared", .{name}))}); - try p.log.addRangeErrorWithNotes(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} was originally declared here", .{name}), notes); - return existing.ref; - }, - .keep_existing => { - ref = existing.ref; - }, - .replace_with_new => { - symbol.link = ref; - }, - .become_private_get_set_pair => { - ref = existing.ref; - symbol.kind = .private_get_set_pair; - }, - .become_private_static_get_set_pair => { - ref = existing.ref; - symbol.kind = .private_static_get_set_pair; - }, + switch (p.canMergeSymbols(scope, symbol.kind, kind)) { + .forbidden => { + const r = js_lexer.rangeOfIdentifier(p.source, loc); + var notes: []logger.Data = &[_]logger.Data{}; + notes = &([_]logger.Data{logger.rangeData(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} has already been declared", .{name}))}); + try p.log.addRangeErrorWithNotes(p.source, r, try std.fmt.allocPrint(p.allocator, "{s} was originally declared here", .{name}), notes); + return existing.ref; + }, + .keep_existing => { + ref = existing.ref; + }, + .replace_with_new => { + symbol.link = ref; + }, + .become_private_get_set_pair => { + ref = existing.ref; + symbol.kind = .private_get_set_pair; + }, + .become_private_static_get_set_pair => { + ref = existing.ref; + symbol.kind = .private_static_get_set_pair; + }, - .overwrite_with_new => {}, - // else => unreachable, + .overwrite_with_new => {}, + // else => unreachable, + } } - } - entry.entry.value = js_ast.Scope.Member{ .ref = ref, .loc = loc }; - return ref; - } + entry.entry.value = js_ast.Scope.Member{ .ref = ref, .loc = loc }; + return ref; + } - pub fn validateFunctionName(p: *P, func: G.Fn, kind: FunctionKind) void { - if (func.name) |name| { - const original_name = p.symbols.items[name.ref.?.inner_index].original_name; + pub fn validateFunctionName(p: *P, func: G.Fn, kind: FunctionKind) void { + if (func.name) |name| { + const original_name = p.symbols.items[name.ref.?.inner_index].original_name; - if (func.flags.is_async and strings.eql(original_name, "await")) { - p.log.addRangeError( - p.source, - js_lexer.rangeOfIdentifier(p.source, name.loc), - "An async function cannot be named \"await\"", - ) catch unreachable; - } else if (kind == .expr and func.flags.is_generator and strings.eql(original_name, "yield")) { - p.log.addRangeError( - p.source, - js_lexer.rangeOfIdentifier(p.source, name.loc), - "An generator function expression cannot be named \"yield\"", - ) catch unreachable; + if (func.flags.is_async and strings.eql(original_name, "await")) { + p.log.addRangeError( + p.source, + js_lexer.rangeOfIdentifier(p.source, name.loc), + "An async function cannot be named \"await\"", + ) catch unreachable; + } else if (kind == .expr and func.flags.is_generator and strings.eql(original_name, "yield")) { + p.log.addRangeError( + p.source, + js_lexer.rangeOfIdentifier(p.source, name.loc), + "An generator function expression cannot be named \"yield\"", + ) catch unreachable; + } } } - } - pub fn parseFnExpr(p: *P, loc: logger.Loc, is_async: bool, async_range: logger.Range) !Expr { - try p.lexer.next(); - const is_generator = p.lexer.token == T.t_asterisk; - if (is_generator) { - // p.markSyntaxFeature() + pub fn parseFnExpr(p: *P, loc: logger.Loc, is_async: bool, async_range: logger.Range) !Expr { try p.lexer.next(); - } else if (is_async) { - // p.markLoweredSyntaxFeature(compat.AsyncAwait, asyncRange, compat.Generator) - } + const is_generator = p.lexer.token == T.t_asterisk; + if (is_generator) { + // p.markSyntaxFeature() + try p.lexer.next(); + } else if (is_async) { + // p.markLoweredSyntaxFeature(compat.AsyncAwait, asyncRange, compat.Generator) + } - var name: ?js_ast.LocRef = null; + var name: ?js_ast.LocRef = null; - _ = p.pushScopeForParsePass(.function_args, loc) catch unreachable; + _ = p.pushScopeForParsePass(.function_args, loc) catch unreachable; - // The name is optional - if (p.lexer.token == .t_identifier) { - // Don't declare the name "arguments" since it's shadowed and inaccessible - var _name = js_ast.LocRef{ - .loc = p.lexer.loc(), - .ref = null, - }; + // The name is optional + if (p.lexer.token == .t_identifier) { + // Don't declare the name "arguments" since it's shadowed and inaccessible + var _name = js_ast.LocRef{ + .loc = p.lexer.loc(), + .ref = null, + }; - const text = p.lexer.identifier; - if (text.len > 0 and !strings.eql(text, "arguments")) { - _name.ref = try p.declareSymbol(.hoisted_function, _name.loc, text); - } else { - _name.ref = try p.newSymbol(.hoisted_function, text); + const text = p.lexer.identifier; + if (text.len > 0 and !strings.eql(text, "arguments")) { + _name.ref = try p.declareSymbol(.hoisted_function, _name.loc, text); + } else { + _name.ref = try p.newSymbol(.hoisted_function, text); + } + + name = _name; + try p.lexer.next(); } - name = _name; - try p.lexer.next(); + // Even anonymous functions can have TypeScript type parameters + if (is_typescript_enabled) { + try p.skipTypeScriptTypeParameters(); + } + + var func = try p.parseFn(name, FnOrArrowDataParse{ + .async_range = async_range, + .allow_await = if (is_async) .allow_expr else .allow_ident, + .allow_yield = if (is_generator) .allow_expr else .allow_ident, + }); + + p.validateFunctionName(func, .expr); + p.popScope(); + + return p.e(js_ast.E.Function{ + .func = func, + }, loc); } - // Even anonymous functions can have TypeScript type parameters - if (p.options.ts) { - try p.skipTypeScriptTypeParameters(); + pub fn parseFnBody(p: *P, data: *FnOrArrowDataParse) !G.FnBody { + var oldFnOrArrowData = p.fn_or_arrow_data_parse; + var oldAllowIn = p.allow_in; + p.fn_or_arrow_data_parse = data.*; + p.allow_in = true; + + const loc = p.lexer.loc(); + _ = try p.pushScopeForParsePass(Scope.Kind.function_body, p.lexer.loc()); + defer p.popScope(); + + try p.lexer.expect(.t_open_brace); + var opts = ParseStatementOptions{}; + const stmts = try p.parseStmtsUpTo(.t_close_brace, &opts); + try p.lexer.next(); + + p.allow_in = oldAllowIn; + p.fn_or_arrow_data_parse = oldFnOrArrowData; + return G.FnBody{ .loc = loc, .stmts = stmts }; } - var func = try p.parseFn(name, FnOrArrowDataParse{ - .async_range = async_range, - .allow_await = if (is_async) .allow_expr else .allow_ident, - .allow_yield = if (is_generator) .allow_expr else .allow_ident, - }); + pub fn parseArrowBody(p: *P, args: []js_ast.G.Arg, data: *FnOrArrowDataParse) !E.Arrow { + var arrow_loc = p.lexer.loc(); - p.validateFunctionName(func, .expr); - p.popScope(); + // Newlines are not allowed before "=>" + if (p.lexer.has_newline_before) { + try p.log.addRangeError(p.source, p.lexer.range(), "Unexpected newline before \"=>\""); + fail(); + } - return p.e(js_ast.E.Function{ - .func = func, - }, loc); - } + try p.lexer.expect(T.t_equals_greater_than); - pub fn parseFnBody(p: *P, data: *FnOrArrowDataParse) !G.FnBody { - var oldFnOrArrowData = p.fn_or_arrow_data_parse; - var oldAllowIn = p.allow_in; - p.fn_or_arrow_data_parse = data.*; - p.allow_in = true; + for (args) |*arg| { + var opts = ParseStatementOptions{}; + try p.declareBinding(Symbol.Kind.hoisted, &arg.binding, &opts); + } - const loc = p.lexer.loc(); - _ = try p.pushScopeForParsePass(Scope.Kind.function_body, p.lexer.loc()); - defer p.popScope(); + // The ability to call "super()" is inherited by arrow functions + data.allow_super_call = p.fn_or_arrow_data_parse.allow_super_call; - try p.lexer.expect(.t_open_brace); - var opts = ParseStatementOptions{}; - const stmts = try p.parseStmtsUpTo(.t_close_brace, &opts); - try p.lexer.next(); + if (p.lexer.token == .t_open_brace) { + var body = try p.parseFnBody(data); + p.after_arrow_body_loc = p.lexer.loc(); + return E.Arrow{ .args = args, .body = body }; + } - p.allow_in = oldAllowIn; - p.fn_or_arrow_data_parse = oldFnOrArrowData; - return G.FnBody{ .loc = loc, .stmts = stmts }; - } + _ = try p.pushScopeForParsePass(Scope.Kind.function_body, arrow_loc); + defer p.popScope(); + + var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); - pub fn parseArrowBody(p: *P, args: []js_ast.G.Arg, data: *FnOrArrowDataParse) !E.Arrow { - var arrow_loc = p.lexer.loc(); + p.fn_or_arrow_data_parse = data.*; + var expr = try p.parseExpr(Level.comma); + p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); - // Newlines are not allowed before "=>" - if (p.lexer.has_newline_before) { - try p.log.addRangeError(p.source, p.lexer.range(), "Unexpected newline before \"=>\""); - fail(); + var stmts = try p.allocator.alloc(Stmt, 1); + stmts[0] = p.s(S.Return{ .value = expr }, expr.loc); + return E.Arrow{ .args = args, .prefer_expr = true, .body = G.FnBody{ .loc = arrow_loc, .stmts = stmts } }; } - try p.lexer.expect(T.t_equals_greater_than); + pub fn declareBinding(p: *P, kind: Symbol.Kind, binding: *BindingNodeIndex, opts: *ParseStatementOptions) !void { + switch (binding.data) { + .b_missing => {}, + .b_identifier => |bind| { + if (!opts.is_typescript_declare or (opts.is_namespace_scope and opts.is_export)) { + bind.ref = try p.declareSymbol(kind, binding.loc, p.loadNameFromRef(bind.ref)); + } + }, - for (args) |*arg| { - var opts = ParseStatementOptions{}; - try p.declareBinding(Symbol.Kind.hoisted, &arg.binding, &opts); + .b_array => |bind| { + for (bind.items) |item, i| { + p.declareBinding(kind, &bind.items[i].binding, opts) catch unreachable; + } + }, + + .b_object => |bind| { + for (bind.properties) |*prop| { + p.declareBinding(kind, &prop.value, opts) catch unreachable; + } + }, + + else => { + // @compileError("Missing binding type"); + }, + } } - // The ability to call "super()" is inherited by arrow functions - data.allow_super_call = p.fn_or_arrow_data_parse.allow_super_call; + // This is where the allocate memory to the heap for AST objects. + // This is a short name to keep the code more readable. + // It also swallows errors, but I think that's correct here. + // We can handle errors via the log. + // We'll have to deal with @wasmHeapGrow or whatever that thing is. + pub inline fn mm(self: *P, comptime ast_object_type: type, instance: anytype) *ast_object_type { + var obj = self.allocator.create(ast_object_type) catch unreachable; + obj.* = instance; + return obj; + } - if (p.lexer.token == .t_open_brace) { - var body = try p.parseFnBody(data); - p.after_arrow_body_loc = p.lexer.loc(); - return E.Arrow{ .args = args, .body = body }; + // mmmm memmory allocation + pub inline fn m(self: *P, kind: anytype) *@TypeOf(kind) { + return self.mm(@TypeOf(kind), kind); } - _ = try p.pushScopeForParsePass(Scope.Kind.function_body, arrow_loc); - defer p.popScope(); + pub fn storeNameInRef(p: *P, name: string) !js_ast.Ref { + if (@ptrToInt(p.source.contents.ptr) <= @ptrToInt(name.ptr) and (@ptrToInt(name.ptr) + name.len) <= (@ptrToInt(p.source.contents.ptr) + p.source.contents.len)) { + const start = Ref.toInt(@ptrToInt(name.ptr) - @ptrToInt(p.source.contents.ptr)); + const end = Ref.toInt(name.len); + return js_ast.Ref{ .source_index = start, .inner_index = end, .is_source_contents_slice = true }; + } else if (p.allocated_names.capacity > 0) { + const inner_index = Ref.toInt(p.allocated_names.items.len); + try p.allocated_names.append(name); + return js_ast.Ref{ .source_index = std.math.maxInt(Ref.Int), .inner_index = inner_index }; + } else { + p.allocated_names = try @TypeOf(p.allocated_names).initCapacity(p.allocator, 1); + p.allocated_names.appendAssumeCapacity(name); + return js_ast.Ref{ .source_index = std.math.maxInt(Ref.Int), .inner_index = 0 }; + } + } - var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); + pub fn loadNameFromRef(p: *P, ref: js_ast.Ref) string { + if (ref.is_source_contents_slice) { + return p.source.contents[ref.source_index .. ref.source_index + ref.inner_index]; + } else if (ref.source_index == std.math.maxInt(Ref.Int)) { + assert(ref.inner_index < p.allocated_names.items.len); + return p.allocated_names.items[ref.inner_index]; + } else { + return p.symbols.items[ref.inner_index].original_name; + } + } - p.fn_or_arrow_data_parse = data.*; - var expr = try p.parseExpr(Level.comma); - p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); + // This parses an expression. This assumes we've already parsed the "async" + // keyword and are currently looking at the following token. + pub fn parseAsyncPrefixExpr(p: *P, async_range: logger.Range, level: Level) !Expr { + // "async function() {}" + if (!p.lexer.has_newline_before and p.lexer.token == T.t_function) { + return try p.parseFnExpr(async_range.loc, true, async_range); + } - var stmts = try p.allocator.alloc(Stmt, 1); - stmts[0] = p.s(S.Return{ .value = expr }, expr.loc); - return E.Arrow{ .args = args, .prefer_expr = true, .body = G.FnBody{ .loc = arrow_loc, .stmts = stmts } }; - } + // Check the precedence level to avoid parsing an arrow function in + // "new async () => {}". This also avoids parsing "new async()" as + // "new (async())()" instead. + if (!p.lexer.has_newline_before and level.lt(.member)) { + switch (p.lexer.token) { + // "async => {}" + .t_equals_greater_than => { + if (level.lte(.assign)) { + var args = try p.allocator.alloc(G.Arg, 1); + args[0] = G.Arg{ .binding = p.b( + B.Identifier{ + .ref = try p.storeNameInRef("async"), + }, + async_range.loc, + ) }; + _ = p.pushScopeForParsePass(.function_args, async_range.loc) catch unreachable; + var data = FnOrArrowDataParse{}; + var arrow_body = try p.parseArrowBody(args, &data); + p.popScope(); + return p.e(arrow_body, async_range.loc); + } + }, + // "async x => {}" + .t_identifier => { + if (level.lte(.assign)) { + // p.markLoweredSyntaxFeature(); + const ref = try p.storeNameInRef(p.lexer.identifier); + var args = try p.allocator.alloc(G.Arg, 1); + args[0] = G.Arg{ .binding = p.b( + B.Identifier{ + .ref = ref, + }, + async_range.loc, + ) }; + try p.lexer.next(); + + _ = try p.pushScopeForParsePass(.function_args, async_range.loc); + defer p.popScope(); + + var data = FnOrArrowDataParse{ + .allow_await = .allow_expr, + }; + var arrowBody = try p.parseArrowBody(args, &data); + arrowBody.is_async = true; + return p.e(arrowBody, async_range.loc); + } + }, + + // "async()" + // "async () => {}" + .t_open_paren => { + try p.lexer.next(); + return p.parseParenExpr(async_range.loc, level, ParenExprOpts{ .is_async = true, .async_range = async_range }); + }, + + // "async<T>()" + // "async <T>() => {}" + .t_less_than => { + if (is_typescript_enabled and p.trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking()) { + try p.lexer.next(); + return p.parseParenExpr(async_range.loc, level, ParenExprOpts{ .is_async = true, .async_range = async_range }); + } + }, - pub fn declareBinding(p: *P, kind: Symbol.Kind, binding: *BindingNodeIndex, opts: *ParseStatementOptions) !void { - switch (binding.data) { - .b_missing => {}, - .b_identifier => |bind| { - if (!opts.is_typescript_declare or (opts.is_namespace_scope and opts.is_export)) { - bind.ref = try p.declareSymbol(kind, binding.loc, p.loadNameFromRef(bind.ref)); + else => {}, } - }, + } + + // "async" + // "async + 1" + return p.e( + E.Identifier{ .ref = try p.storeNameInRef("async") }, + async_range.loc, + ); + } + + pub const Backtracking = struct { + pub inline fn lexerBacktracker(p: *P, func: anytype) bool { + var old_lexer = std.mem.toBytes(p.lexer); + const old_log_disabled = p.lexer.is_log_disabled; + p.lexer.is_log_disabled = true; - .b_array => |bind| { - for (bind.items) |item, i| { - p.declareBinding(kind, &bind.items[i].binding, opts) catch unreachable; + defer p.lexer.is_log_disabled = old_log_disabled; + var backtrack = false; + func(p) catch |err| { + switch (err) { + error.Backtrack => { + backtrack = true; + }, + else => {}, + } + }; + + if (backtrack) { + p.lexer = std.mem.bytesToValue(@TypeOf(p.lexer), &old_lexer); } - }, - .b_object => |bind| { - for (bind.properties) |*prop| { - p.declareBinding(kind, &prop.value, opts) catch unreachable; + return !backtrack; + } + + pub fn skipTypeScriptTypeParametersThenOpenParenWithBacktracking(p: *P) anyerror!void { + try p.skipTypeScriptTypeParameters(); + if (p.lexer.token != .t_open_paren) { + // try p.lexer.unexpected(); return error.SyntaxError; + return error.Backtrack; } - }, + } - else => { - // @compileError("Missing binding type"); - }, - } - } + pub fn skipTypeScriptArrowArgsWithBacktracking(p: *P) anyerror!void { + try p.skipTypescriptFnArgs(); + p.lexer.expect(.t_equals_greater_than) catch |err| { + return error.Backtrack; + }; + } - // This is where the allocate memory to the heap for AST objects. - // This is a short name to keep the code more readable. - // It also swallows errors, but I think that's correct here. - // We can handle errors via the log. - // We'll have to deal with @wasmHeapGrow or whatever that thing is. - pub inline fn mm(self: *P, comptime ast_object_type: type, instance: anytype) *ast_object_type { - var obj = self.allocator.create(ast_object_type) catch unreachable; - obj.* = instance; - return obj; - } + pub fn skipTypeScriptTypeArgumentsWithBacktracking(p: *P) anyerror!void { + _ = try p.skipTypeScriptTypeArguments(false); - // mmmm memmory allocation - pub inline fn m(self: *P, kind: anytype) *@TypeOf(kind) { - return self.mm(@TypeOf(kind), kind); - } + // Check the token after this and backtrack if it's the wrong one + if (!TypeScript.canFollowTypeArgumentsInExpression(p)) { + // try p.lexer.unexpected(); return error.SyntaxError; + return error.Backtrack; + } + } - pub fn storeNameInRef(p: *P, name: string) !js_ast.Ref { - if (@ptrToInt(p.source.contents.ptr) <= @ptrToInt(name.ptr) and (@ptrToInt(name.ptr) + name.len) <= (@ptrToInt(p.source.contents.ptr) + p.source.contents.len)) { - const start = Ref.toInt(@ptrToInt(name.ptr) - @ptrToInt(p.source.contents.ptr)); - const end = Ref.toInt(name.len); - return js_ast.Ref{ .source_index = start, .inner_index = end, .is_source_contents_slice = true }; - } else if (p.allocated_names.capacity > 0) { - const inner_index = Ref.toInt(p.allocated_names.items.len); - try p.allocated_names.append(name); - return js_ast.Ref{ .source_index = std.math.maxInt(Ref.Int), .inner_index = inner_index }; - } else { - p.allocated_names = try @TypeOf(p.allocated_names).initCapacity(p.allocator, 1); - p.allocated_names.appendAssumeCapacity(name); - return js_ast.Ref{ .source_index = std.math.maxInt(Ref.Int), .inner_index = 0 }; - } - } + pub fn skipTypeScriptArrowReturnTypeWithBacktracking(p: *P) anyerror!void { + p.lexer.expect(.t_colon) catch |err| { + return error.Backtrack; + }; + try p.skipTypescriptReturnType(); + // Check the token after this and backtrack if it's the wrong one + if (p.lexer.token != .t_equals_greater_than) { + // try p.lexer.unexpected(); return error.SyntaxError; + return error.Backtrack; + } + } + }; - pub fn loadNameFromRef(p: *P, ref: js_ast.Ref) string { - if (ref.is_source_contents_slice) { - return p.source.contents[ref.source_index .. ref.source_index + ref.inner_index]; - } else if (ref.source_index == std.math.maxInt(Ref.Int)) { - assert(ref.inner_index < p.allocated_names.items.len); - return p.allocated_names.items[ref.inner_index]; - } else { - return p.symbols.items[ref.inner_index].original_name; + pub fn trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking(p: *P) bool { + return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptTypeParametersThenOpenParenWithBacktracking); } - } - // This parses an expression. This assumes we've already parsed the "async" - // keyword and are currently looking at the following token. - pub fn parseAsyncPrefixExpr(p: *P, async_range: logger.Range, level: Level) !Expr { - // "async function() {}" - if (!p.lexer.has_newline_before and p.lexer.token == T.t_function) { - return try p.parseFnExpr(async_range.loc, true, async_range); + pub fn trySkipTypeScriptTypeArgumentsWithBacktracking(p: *P) bool { + return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptTypeArgumentsWithBacktracking); } - // Check the precedence level to avoid parsing an arrow function in - // "new async () => {}". This also avoids parsing "new async()" as - // "new (async())()" instead. - if (!p.lexer.has_newline_before and level.lt(.member)) { - switch (p.lexer.token) { - // "async => {}" - .t_equals_greater_than => { - if (level.lte(.assign)) { - var args = try p.allocator.alloc(G.Arg, 1); - args[0] = G.Arg{ .binding = p.b( - B.Identifier{ - .ref = try p.storeNameInRef("async"), - }, - async_range.loc, - ) }; - _ = p.pushScopeForParsePass(.function_args, async_range.loc) catch unreachable; - var data = FnOrArrowDataParse{}; - var arrow_body = try p.parseArrowBody(args, &data); - p.popScope(); - return p.e(arrow_body, async_range.loc); - } - }, - // "async x => {}" - .t_identifier => { - if (level.lte(.assign)) { - // p.markLoweredSyntaxFeature(); - const ref = try p.storeNameInRef(p.lexer.identifier); - var args = try p.allocator.alloc(G.Arg, 1); - args[0] = G.Arg{ .binding = p.b( - B.Identifier{ - .ref = ref, - }, - async_range.loc, - ) }; - try p.lexer.next(); - - _ = try p.pushScopeForParsePass(.function_args, async_range.loc); - defer p.popScope(); + pub fn trySkipTypeScriptArrowReturnTypeWithBacktracking(p: *P) bool { + return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptArrowReturnTypeWithBacktracking); + } - var data = FnOrArrowDataParse{ - .allow_await = .allow_expr, - }; - var arrowBody = try p.parseArrowBody(args, &data); - arrowBody.is_async = true; - return p.e(arrowBody, async_range.loc); - } - }, + pub fn trySkipTypeScriptArrowArgsWithBacktracking(p: *P) bool { + return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptArrowArgsWithBacktracking); + } - // "async()" - // "async () => {}" - .t_open_paren => { - try p.lexer.next(); - return p.parseParenExpr(async_range.loc, level, ParenExprOpts{ .is_async = true, .async_range = async_range }); - }, + pub fn parseExprOrBindings(p: *P, level: Level, errors: ?*DeferredErrors) anyerror!Expr { + return try p.parseExprCommon(level, errors, Expr.EFlags.none); + } - // "async<T>()" - // "async <T>() => {}" - .t_less_than => { - if (p.options.ts and p.trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking()) { - try p.lexer.next(); - return p.parseParenExpr(async_range.loc, level, ParenExprOpts{ .is_async = true, .async_range = async_range }); - } - }, + pub fn parseExpr(p: *P, level: Level) anyerror!Expr { + return try p.parseExprCommon(level, null, Expr.EFlags.none); + } - else => {}, - } + pub fn parseExprWithFlags(p: *P, level: Level, flags: Expr.EFlags) anyerror!Expr { + return try p.parseExprCommon(level, null, flags); } - // "async" - // "async + 1" - return p.e( - E.Identifier{ .ref = try p.storeNameInRef("async") }, - async_range.loc, - ); - } + pub fn parseExprCommon(p: *P, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { + const had_pure_comment_before = p.lexer.has_pure_comment_before and !p.options.ignore_dce_annotations; + var expr = try p.parsePrefix(level, errors, flags); - pub const Backtracking = struct { - pub inline fn lexerBacktracker(p: *P, func: anytype) bool { - var old_lexer = std.mem.toBytes(p.lexer); - const old_log_disabled = p.lexer.is_log_disabled; - p.lexer.is_log_disabled = true; + // There is no formal spec for "__PURE__" comments but from reverse- + // engineering, it looks like they apply to the next CallExpression or + // NewExpression. So in "/* @__PURE__ */ a().b() + c()" the comment applies + // to the expression "a().b()". - defer p.lexer.is_log_disabled = old_log_disabled; - var backtrack = false; - func(p) catch |err| { - switch (err) { - error.Backtrack => { - backtrack = true; + if (had_pure_comment_before and level.lt(.call)) { + expr = try p.parseSuffix(expr, @intToEnum(Level, @enumToInt(Level.call) - 1), errors, flags); + switch (expr.data) { + .e_call => |ex| { + ex.can_be_unwrapped_if_unused = true; + }, + .e_new => |ex| { + ex.can_be_unwrapped_if_unused = true; }, else => {}, } - }; - - if (backtrack) { - p.lexer = std.mem.bytesToValue(@TypeOf(p.lexer), &old_lexer); } - return !backtrack; + return try p.parseSuffix(expr, level, errors, flags); } - pub fn skipTypeScriptTypeParametersThenOpenParenWithBacktracking(p: *P) anyerror!void { - try p.skipTypeScriptTypeParameters(); - if (p.lexer.token != .t_open_paren) { - // try p.lexer.unexpected(); return error.SyntaxError; - return error.Backtrack; - } + pub fn addImportRecord(p: *P, kind: ImportKind, loc: logger.Loc, name: string) u32 { + return p.addImportRecordByRange(kind, p.source.rangeOfString(loc), name); } - pub fn skipTypeScriptArrowArgsWithBacktracking(p: *P) anyerror!void { - try p.skipTypescriptFnArgs(); - p.lexer.expect(.t_equals_greater_than) catch |err| { - return error.Backtrack; + pub fn addImportRecordByRange(p: *P, kind: ImportKind, range: logger.Range, name: string) u32 { + var index = p.import_records.items.len; + const record = ImportRecord{ + .kind = kind, + .range = range, + .path = fs.Path.init(name), }; + p.import_records.append(record) catch unreachable; + return @intCast(u32, index); } - pub fn skipTypeScriptTypeArgumentsWithBacktracking(p: *P) anyerror!void { - _ = try p.skipTypeScriptTypeArguments(false); + pub fn popScope(p: *P) void { + const current_scope = p.current_scope; + // We cannot rename anything inside a scope containing a direct eval() call + if (current_scope.contains_direct_eval) { + var iter = current_scope.members.iterator(); + while (iter.next()) |member| { + + // Using direct eval when bundling is not a good idea in general because + // esbuild must assume that it can potentially reach anything in any of + // the containing scopes. We try to make it work but this isn't possible + // in some cases. + // + // For example, symbols imported using an ESM import are a live binding + // to the underlying symbol in another file. This is emulated during + // scope hoisting by erasing the ESM import and just referencing the + // underlying symbol in the flattened bundle directly. However, that + // symbol may have a different name which could break uses of direct + // eval: + // + // // Before bundling + // import { foo as bar } from './foo.js' + // console.log(eval('bar')) + // + // // After bundling + // let foo = 123 // The contents of "foo.js" + // console.log(eval('bar')) + // + // There really isn't any way to fix this. You can't just rename "foo" to + // "bar" in the example above because there may be a third bundled file + // that also contains direct eval and imports the same symbol with a + // different conflicting import alias. And there is no way to store a + // live binding to the underlying symbol in a variable with the import's + // name so that direct eval can access it: + // + // // After bundling + // let foo = 123 // The contents of "foo.js" + // const bar = /* cannot express a live binding to "foo" here */ + // console.log(eval('bar')) + // + // Technically a "with" statement could potentially make this work (with + // a big hit to performance), but they are deprecated and are unavailable + // in strict mode. This is a non-starter since all ESM code is strict mode. + // + // So while we still try to obey the requirement that all symbol names are + // pinned when direct eval is present, we make an exception for top-level + // symbols in an ESM file when bundling is enabled. We make no guarantee + // that "eval" will be able to reach these symbols and we allow them to be + // renamed or removed by tree shaking. + // if (p.currentScope.parent == null and p.has_es_module_syntax) { + // continue; + // } - // Check the token after this and backtrack if it's the wrong one - if (!TypeScript.canFollowTypeArgumentsInExpression(p)) { - // try p.lexer.unexpected(); return error.SyntaxError; - return error.Backtrack; + p.symbols.items[member.value.ref.inner_index].must_not_be_renamed = true; + } } + + p.current_scope = current_scope.parent orelse p.panic("Internal error: attempted to call popScope() on the topmost scope", .{}); } - pub fn skipTypeScriptArrowReturnTypeWithBacktracking(p: *P) anyerror!void { - p.lexer.expect(.t_colon) catch |err| { - return error.Backtrack; - }; - try p.skipTypescriptReturnType(); - // Check the token after this and backtrack if it's the wrong one - if (p.lexer.token != .t_equals_greater_than) { - // try p.lexer.unexpected(); return error.SyntaxError; - return error.Backtrack; + pub fn markExprAsParenthesized(p: *P, expr: *Expr) void { + switch (expr.data) { + .e_array => |ex| { + ex.is_parenthesized = true; + }, + .e_object => |ex| { + ex.is_parenthesized = true; + }, + else => { + return; + }, } } - }; - - pub fn trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking(p: *P) bool { - return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptTypeParametersThenOpenParenWithBacktracking); - } - pub fn trySkipTypeScriptTypeArgumentsWithBacktracking(p: *P) bool { - return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptTypeArgumentsWithBacktracking); - } + pub fn parseYieldExpr(p: *P, loc: logger.Loc) !ExprNodeIndex { + // Parse a yield-from expression, which yields from an iterator + const isStar = p.lexer.token == T.t_asterisk; - pub fn trySkipTypeScriptArrowReturnTypeWithBacktracking(p: *P) bool { - return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptArrowReturnTypeWithBacktracking); - } + if (isStar) { + if (p.lexer.has_newline_before) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + try p.lexer.next(); + } - pub fn trySkipTypeScriptArrowArgsWithBacktracking(p: *P) bool { - return Backtracking.lexerBacktracker(p, Backtracking.skipTypeScriptArrowArgsWithBacktracking); - } + var value: ?ExprNodeIndex = null; + switch (p.lexer.token) { + .t_close_brace, .t_close_paren, .t_colon, .t_comma, .t_semicolon => {}, + else => { + if (isStar or !p.lexer.has_newline_before) { + value = try p.parseExpr(.yield); + } + }, + } - pub fn parseExprOrBindings(p: *P, level: Level, errors: ?*DeferredErrors) anyerror!Expr { - return try p.parseExprCommon(level, errors, Expr.EFlags.none); - } + return p.e(E.Yield{ + .value = value, + .is_star = isStar, + }, loc); + } - pub fn parseExpr(p: *P, level: Level) anyerror!Expr { - return try p.parseExprCommon(level, null, Expr.EFlags.none); - } + pub fn parseProperty(p: *P, kind: Property.Kind, opts: *PropertyOpts, errors: ?*DeferredErrors) anyerror!?G.Property { + var key: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; + var key_range = p.lexer.range(); + var is_computed = false; - pub fn parseExprWithFlags(p: *P, level: Level, flags: Expr.EFlags) anyerror!Expr { - return try p.parseExprCommon(level, null, flags); - } + switch (p.lexer.token) { + .t_numeric_literal => { + key = p.e(E.Number{ + .value = p.lexer.number, + }, p.lexer.loc()); + // p.checkForLegacyOctalLiteral() + try p.lexer.next(); + }, + .t_string_literal => { + key = try p.parseStringLiteral(); + }, + .t_big_integer_literal => { + key = p.e(E.BigInt{ .value = p.lexer.identifier }, p.lexer.loc()); + // markSyntaxFeature + try p.lexer.next(); + }, + .t_private_identifier => { + if (!opts.is_class or opts.ts_decorators.len > 0) { + try p.lexer.expected(.t_identifier); + } - pub fn parseExprCommon(p: *P, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { - const had_pure_comment_before = p.lexer.has_pure_comment_before and !p.options.ignore_dce_annotations; - var expr = try p.parsePrefix(level, errors, flags); + key = p.e(E.PrivateIdentifier{ .ref = p.storeNameInRef(p.lexer.identifier) catch unreachable }, p.lexer.loc()); + try p.lexer.next(); + }, + .t_open_bracket => { + is_computed = true; + // p.markSyntaxFeature(compat.objectExtensions, p.lexer.range()) + try p.lexer.next(); + const wasIdentifier = p.lexer.token == .t_identifier; + const expr = try p.parseExpr(.comma); - // There is no formal spec for "__PURE__" comments but from reverse- - // engineering, it looks like they apply to the next CallExpression or - // NewExpression. So in "/* @__PURE__ */ a().b() + c()" the comment applies - // to the expression "a().b()". + // Handle index signatures + if (is_typescript_enabled and p.lexer.token == .t_colon and wasIdentifier and opts.is_class) { + switch (expr.data) { + .e_identifier => |ident| { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + try p.lexer.expect(.t_close_bracket); + try p.lexer.expect(.t_colon); + try p.skipTypeScriptType(.lowest); + try p.lexer.expectOrInsertSemicolon(); + + // Skip this property entirely + return null; + }, + else => {}, + } + } - if (had_pure_comment_before and level.lt(.call)) { - expr = try p.parseSuffix(expr, @intToEnum(Level, @enumToInt(Level.call) - 1), errors, flags); - switch (expr.data) { - .e_call => |ex| { - ex.can_be_unwrapped_if_unused = true; + try p.lexer.expect(.t_close_bracket); + key = expr; }, - .e_new => |ex| { - ex.can_be_unwrapped_if_unused = true; + .t_asterisk => { + if (kind != .normal or opts.is_generator) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + + try p.lexer.next(); + opts.is_generator = true; + return try p.parseProperty(.normal, opts, errors); }, - else => {}, - } - } - return try p.parseSuffix(expr, level, errors, flags); - } + else => { + const name = p.lexer.identifier; + const raw = p.lexer.raw(); + const name_range = p.lexer.range(); - pub fn addImportRecord(p: *P, kind: ImportKind, loc: logger.Loc, name: string) u32 { - return p.addImportRecordByRange(kind, p.source.rangeOfString(loc), name); - } + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); + } - pub fn addImportRecordByRange(p: *P, kind: ImportKind, range: logger.Range, name: string) u32 { - var index = p.import_records.items.len; - const record = ImportRecord{ - .kind = kind, - .range = range, - .path = fs.Path.init(name), - }; - p.import_records.append(record) catch unreachable; - return @intCast(u32, index); - } + try p.lexer.next(); - pub fn popScope(p: *P) void { - const current_scope = p.current_scope; - // We cannot rename anything inside a scope containing a direct eval() call - if (current_scope.contains_direct_eval) { - var iter = current_scope.members.iterator(); - while (iter.next()) |member| { - - // Using direct eval when bundling is not a good idea in general because - // esbuild must assume that it can potentially reach anything in any of - // the containing scopes. We try to make it work but this isn't possible - // in some cases. - // - // For example, symbols imported using an ESM import are a live binding - // to the underlying symbol in another file. This is emulated during - // scope hoisting by erasing the ESM import and just referencing the - // underlying symbol in the flattened bundle directly. However, that - // symbol may have a different name which could break uses of direct - // eval: - // - // // Before bundling - // import { foo as bar } from './foo.js' - // console.log(eval('bar')) - // - // // After bundling - // let foo = 123 // The contents of "foo.js" - // console.log(eval('bar')) - // - // There really isn't any way to fix this. You can't just rename "foo" to - // "bar" in the example above because there may be a third bundled file - // that also contains direct eval and imports the same symbol with a - // different conflicting import alias. And there is no way to store a - // live binding to the underlying symbol in a variable with the import's - // name so that direct eval can access it: - // - // // After bundling - // let foo = 123 // The contents of "foo.js" - // const bar = /* cannot express a live binding to "foo" here */ - // console.log(eval('bar')) - // - // Technically a "with" statement could potentially make this work (with - // a big hit to performance), but they are deprecated and are unavailable - // in strict mode. This is a non-starter since all ESM code is strict mode. - // - // So while we still try to obey the requirement that all symbol names are - // pinned when direct eval is present, we make an exception for top-level - // symbols in an ESM file when bundling is enabled. We make no guarantee - // that "eval" will be able to reach these symbols and we allow them to be - // renamed or removed by tree shaking. - // if (p.currentScope.parent == null and p.has_es_module_syntax) { - // continue; - // } + // Support contextual keywords + if (kind == .normal and !opts.is_generator) { + // Does the following token look like a key? + var couldBeModifierKeyword = p.lexer.isIdentifierOrKeyword(); + if (!couldBeModifierKeyword) { + switch (p.lexer.token) { + .t_open_bracket, .t_numeric_literal, .t_string_literal, .t_asterisk, .t_private_identifier => { + couldBeModifierKeyword = true; + }, + else => {}, + } + } - p.symbols.items[member.value.ref.inner_index].must_not_be_renamed = true; - } - } + // If so, check for a modifier keyword + if (couldBeModifierKeyword) { + // TODO: micro-optimization, use a smaller list for non-typescript files. + if (js_lexer.PropertyModifierKeyword.List.get(name)) |keyword| { + switch (keyword) { + .p_get => { + if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_get) { + // p.markSyntaxFeautre(ObjectAccessors, name_range) + return try p.parseProperty(.get, opts, null); + } + }, - p.current_scope = current_scope.parent orelse p.panic("Internal error: attempted to call popScope() on the topmost scope", .{}); - } + .p_set => { + if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_set) { + // p.markSyntaxFeautre(ObjectAccessors, name_range) + return try p.parseProperty(.set, opts, null); + } + }, + .p_async => { + if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_async and !p.lexer.has_newline_before) { + opts.is_async = true; + opts.async_range = name_range; - pub fn markExprAsParenthesized(p: *P, expr: *Expr) void { - switch (expr.data) { - .e_array => |ex| { - ex.is_parenthesized = true; - }, - .e_object => |ex| { - ex.is_parenthesized = true; - }, - else => { - return; - }, - } - } + // p.markSyntaxFeautre(ObjectAccessors, name_range) + return try p.parseProperty(kind, opts, null); + } + }, + .p_static => { + if (!opts.is_static and !opts.is_async and opts.is_class and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_get) == .p_static) { + opts.is_static = true; + return try p.parseProperty(kind, opts, null); + } + }, + .p_private, .p_protected, .p_public, .p_readonly, .p_abstract, .p_declare, .p_override => { + // Skip over TypeScript keywords + if (opts.is_class and is_typescript_enabled and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == keyword) { + return try p.parseProperty(kind, opts, null); + } + }, + } + } + } + } - pub fn parseYieldExpr(p: *P, loc: logger.Loc) !ExprNodeIndex { - // Parse a yield-from expression, which yields from an iterator - const isStar = p.lexer.token == T.t_asterisk; + key = p.e(E.String{ .utf8 = name }, name_range.loc); - if (isStar) { - if (p.lexer.has_newline_before) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - try p.lexer.next(); - } + // Parse a shorthand property + if (!opts.is_class and kind == .normal and p.lexer.token != .t_colon and p.lexer.token != .t_open_paren and p.lexer.token != .t_less_than and !opts.is_generator and !js_lexer.Keywords.has(name)) { + if ((p.fn_or_arrow_data_parse.allow_await != .allow_ident and strings.eqlComptime(name, "await")) or (p.fn_or_arrow_data_parse.allow_yield != .allow_ident and strings.eqlComptime(name, "yield"))) { + // TODO: add fmt to addRangeError + p.log.addRangeError(p.source, name_range, "Cannot use \"yield\" or \"await\" here.") catch unreachable; + } - var value: ?ExprNodeIndex = null; - switch (p.lexer.token) { - .t_close_brace, .t_close_paren, .t_colon, .t_comma, .t_semicolon => {}, - else => { - if (isStar or !p.lexer.has_newline_before) { - value = try p.parseExpr(.yield); - } - }, - } + const ref = p.storeNameInRef(name) catch unreachable; + const value = p.e(E.Identifier{ .ref = ref }, key.loc); - return p.e(E.Yield{ - .value = value, - .is_star = isStar, - }, loc); - } + // Destructuring patterns have an optional default value + var initializer: ?Expr = null; + if (errors != null and p.lexer.token == .t_equals) { + (errors orelse unreachable).invalid_expr_default_value = p.lexer.range(); + try p.lexer.next(); + initializer = try p.parseExpr(.comma); + } - pub fn parseProperty(p: *P, kind: Property.Kind, opts: *PropertyOpts, errors: ?*DeferredErrors) anyerror!?G.Property { - var key: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; - var key_range = p.lexer.range(); - var is_computed = false; - - switch (p.lexer.token) { - .t_numeric_literal => { - key = p.e(E.Number{ - .value = p.lexer.number, - }, p.lexer.loc()); - // p.checkForLegacyOctalLiteral() - try p.lexer.next(); - }, - .t_string_literal => { - key = try p.parseStringLiteral(); - }, - .t_big_integer_literal => { - key = p.e(E.BigInt{ .value = p.lexer.identifier }, p.lexer.loc()); - // markSyntaxFeature - try p.lexer.next(); - }, - .t_private_identifier => { - if (!opts.is_class or opts.ts_decorators.len > 0) { - try p.lexer.expected(.t_identifier); + return G.Property{ + .kind = kind, + .key = key, + .value = value, + .initializer = initializer, + .flags = Flags.Property{ + .was_shorthand = true, + }, + }; + } + }, + } + + if (is_typescript_enabled) { + // "class X { foo?: number }" + // "class X { foo!: number }" + if (opts.is_class and (p.lexer.token == .t_question or p.lexer.token == .t_exclamation)) { + try p.lexer.next(); } - key = p.e(E.PrivateIdentifier{ .ref = p.storeNameInRef(p.lexer.identifier) catch unreachable }, p.lexer.loc()); - try p.lexer.next(); - }, - .t_open_bracket => { - is_computed = true; - // p.markSyntaxFeature(compat.objectExtensions, p.lexer.range()) - try p.lexer.next(); - const wasIdentifier = p.lexer.token == .t_identifier; - const expr = try p.parseExpr(.comma); + // "class X { foo?<T>(): T }" + // "const x = { foo<T>(): T {} }" + try p.skipTypeScriptTypeParameters(); + } - // Handle index signatures - if (p.options.ts and p.lexer.token == .t_colon and wasIdentifier and opts.is_class) { - switch (expr.data) { - .e_identifier => |ident| { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - try p.lexer.expect(.t_close_bracket); - try p.lexer.expect(.t_colon); - try p.skipTypeScriptType(.lowest); - try p.lexer.expectOrInsertSemicolon(); + // Parse a class field with an optional initial value + if (opts.is_class and kind == .normal and !opts.is_async and !opts.is_generator and p.lexer.token != .t_open_paren) { + var initializer: ?Expr = null; - // Skip this property entirely - return null; + // Forbid the names "constructor" and "prototype" in some cases + if (!is_computed) { + switch (key.data) { + .e_string => |str| { + if (str.eql(string, "constructor") or (opts.is_static and str.eql(string, "prototype"))) { + // TODO: fmt error message to include string value. + p.log.addRangeError(p.source, key_range, "Invalid field name") catch unreachable; + } }, else => {}, } } - try p.lexer.expect(.t_close_bracket); - key = expr; - }, - .t_asterisk => { - if (kind != .normal or opts.is_generator) { - try p.lexer.unexpected(); - return error.SyntaxError; + // Skip over types + if (is_typescript_enabled and p.lexer.token == .t_colon) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); } - try p.lexer.next(); - opts.is_generator = true; - return try p.parseProperty(.normal, opts, errors); - }, - - else => { - const name = p.lexer.identifier; - const raw = p.lexer.raw(); - const name_range = p.lexer.range(); - - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); + if (p.lexer.token == .t_equals) { + try p.lexer.next(); + initializer = try p.parseExpr(.comma); } - try p.lexer.next(); - - // Support contextual keywords - if (kind == .normal and !opts.is_generator) { - // Does the following token look like a key? - var couldBeModifierKeyword = p.lexer.isIdentifierOrKeyword(); - if (!couldBeModifierKeyword) { - switch (p.lexer.token) { - .t_open_bracket, .t_numeric_literal, .t_string_literal, .t_asterisk, .t_private_identifier => { - couldBeModifierKeyword = true; - }, - else => {}, + // Special-case private identifiers + switch (key.data) { + .e_private_identifier => |private| { + const name = p.loadNameFromRef(private.ref); + if (strings.eqlComptime(name, "#constructor")) { + p.log.addRangeError(p.source, key_range, "Invalid field name \"#constructor\"") catch unreachable; } - } - - // If so, check for a modifier keyword - if (couldBeModifierKeyword) { - // TODO: micro-optimization, use a smaller list for non-typescript files. - if (js_lexer.PropertyModifierKeyword.List.get(name)) |keyword| { - switch (keyword) { - .p_get => { - if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_get) { - // p.markSyntaxFeautre(ObjectAccessors, name_range) - return try p.parseProperty(.get, opts, null); - } - }, - - .p_set => { - if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_set) { - // p.markSyntaxFeautre(ObjectAccessors, name_range) - return try p.parseProperty(.set, opts, null); - } - }, - .p_async => { - if (!opts.is_async and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == .p_async and !p.lexer.has_newline_before) { - opts.is_async = true; - opts.async_range = name_range; - // p.markSyntaxFeautre(ObjectAccessors, name_range) - return try p.parseProperty(kind, opts, null); - } - }, - .p_static => { - if (!opts.is_static and !opts.is_async and opts.is_class and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_get) == .p_static) { - opts.is_static = true; - return try p.parseProperty(kind, opts, null); - } - }, - .p_private, .p_protected, .p_public, .p_readonly, .p_abstract, .p_declare, .p_override => { - // Skip over TypeScript keywords - if (opts.is_class and p.options.ts and (js_lexer.PropertyModifierKeyword.List.get(raw) orelse .p_static) == keyword) { - return try p.parseProperty(kind, opts, null); - } - }, - } + var declare: js_ast.Symbol.Kind = undefined; + if (opts.is_static) { + declare = .private_static_field; + } else { + declare = .private_field; } - } + private.ref = p.declareSymbol(declare, key.loc, name) catch unreachable; + }, + else => {}, } - key = p.e(E.String{ .utf8 = name }, name_range.loc); + try p.lexer.expectOrInsertSemicolon(); - // Parse a shorthand property - if (!opts.is_class and kind == .normal and p.lexer.token != .t_colon and p.lexer.token != .t_open_paren and p.lexer.token != .t_less_than and !opts.is_generator and !js_lexer.Keywords.has(name)) { - if ((p.fn_or_arrow_data_parse.allow_await != .allow_ident and strings.eqlComptime(name, "await")) or (p.fn_or_arrow_data_parse.allow_yield != .allow_ident and strings.eqlComptime(name, "yield"))) { - // TODO: add fmt to addRangeError - p.log.addRangeError(p.source, name_range, "Cannot use \"yield\" or \"await\" here.") catch unreachable; - } + return G.Property{ + .ts_decorators = opts.ts_decorators, + .kind = kind, + .flags = Flags.Property{ + .is_computed = is_computed, + .is_static = opts.is_static, + }, + .key = key, + .initializer = initializer, + }; + } - const ref = p.storeNameInRef(name) catch unreachable; - const value = p.e(E.Identifier{ .ref = ref }, key.loc); + // Parse a method expression + if (p.lexer.token == .t_open_paren or kind != .normal or opts.is_class or opts.is_async or opts.is_generator) { + if (p.lexer.token == .t_open_paren and kind != .get and kind != .set) { + // markSyntaxFeature object extensions + } - // Destructuring patterns have an optional default value - var initializer: ?Expr = null; - if (errors != null and p.lexer.token == .t_equals) { - (errors orelse unreachable).invalid_expr_default_value = p.lexer.range(); - try p.lexer.next(); - initializer = try p.parseExpr(.comma); - } + const loc = p.lexer.loc(); + const scope_index = p.pushScopeForParsePass(.function_args, loc) catch unreachable; + var is_constructor = false; - return G.Property{ - .kind = kind, - .key = key, - .value = value, - .initializer = initializer, - .flags = Flags.Property{ - .was_shorthand = true, + // Forbid the names "constructor" and "prototype" in some cases + if (opts.is_class and !is_computed) { + switch (key.data) { + .e_string => |str| { + if (!opts.is_static and str.eql(string, "constructor")) { + if (kind == .get) { + p.log.addRangeError(p.source, key_range, "Class constructor cannot be a getter") catch unreachable; + } else if (kind == .set) { + p.log.addRangeError(p.source, key_range, "Class constructor cannot be a setter") catch unreachable; + } else if (opts.is_async) { + p.log.addRangeError(p.source, key_range, "Class constructor cannot be an async function") catch unreachable; + } else if (opts.is_generator) { + p.log.addRangeError(p.source, key_range, "Class constructor cannot be a generator function") catch unreachable; + } else { + is_constructor = true; + } + } else if (opts.is_static and str.eql(string, "prototype")) { + p.log.addRangeError(p.source, key_range, "Invalid static method name \"prototype\"") catch unreachable; + } }, - }; + else => {}, + } } - }, - } - if (p.options.ts) { - // "class X { foo?: number }" - // "class X { foo!: number }" - if (opts.is_class and (p.lexer.token == .t_question or p.lexer.token == .t_exclamation)) { - try p.lexer.next(); - } + var func = try p.parseFn(null, FnOrArrowDataParse{ + .async_range = opts.async_range, + .has_async_range = !opts.async_range.isEmpty(), + .allow_await = if (opts.is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, + .allow_yield = if (opts.is_generator) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, + .allow_super_call = opts.class_has_extends and is_constructor, + .allow_ts_decorators = opts.allow_ts_decorators, + .is_constructor = is_constructor, - // "class X { foo?<T>(): T }" - // "const x = { foo<T>(): T {} }" - try p.skipTypeScriptTypeParameters(); - } + // Only allow omitting the body if we're parsing TypeScript class + .allow_missing_body_for_type_script = is_typescript_enabled and opts.is_class, + }); - // Parse a class field with an optional initial value - if (opts.is_class and kind == .normal and !opts.is_async and !opts.is_generator and p.lexer.token != .t_open_paren) { - var initializer: ?Expr = null; + // "class Foo { foo(): void; foo(): void {} }" + if (func.flags.is_forward_declaration) { + // Skip this property entirely + p.popAndDiscardScope(scope_index); + return null; + } - // Forbid the names "constructor" and "prototype" in some cases - if (!is_computed) { - switch (key.data) { - .e_string => |str| { - if (str.eql(string, "constructor") or (opts.is_static and str.eql(string, "prototype"))) { - // TODO: fmt error message to include string value. - p.log.addRangeError(p.source, key_range, "Invalid field name") catch unreachable; + p.popScope(); + func.flags.is_unique_formal_parameters = true; + const value = p.e(E.Function{ .func = func }, loc); + + // Enforce argument rules for accessors + switch (kind) { + .get => { + if (func.args.len > 0) { + const r = js_lexer.rangeOfIdentifier(p.source, func.args[0].binding.loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Getter {s} must have zero arguments", .{p.keyNameForError(key)}) catch unreachable; + } + }, + .set => { + if (func.args.len != 1) { + var r = js_lexer.rangeOfIdentifier(p.source, if (func.args.len > 0) func.args[0].binding.loc else loc); + if (func.args.len > 1) { + r = js_lexer.rangeOfIdentifier(p.source, func.args[1].binding.loc); + } + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Setter {s} must have exactly 1 argument (there are {d})", .{ p.keyNameForError(key), func.args.len }) catch unreachable; } }, else => {}, } - } - // Skip over types - if (p.options.ts and p.lexer.token == .t_colon) { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - } - - if (p.lexer.token == .t_equals) { - try p.lexer.next(); - initializer = try p.parseExpr(.comma); - } + // Special-case private identifiers + switch (key.data) { + .e_private_identifier => |private| { + var declare: Symbol.Kind = undefined; + var suffix: string = ""; + switch (kind) { + .get => { + if (opts.is_static) { + declare = .private_static_get; + } else { + declare = .private_get; + } + suffix = "_get"; + }, + .set => { + if (opts.is_static) { + declare = .private_static_set; + } else { + declare = .private_set; + } + suffix = "_set"; + }, + else => { + if (opts.is_static) { + declare = .private_static_method; + } else { + declare = .private_method; + } + suffix = "_fn"; + }, + } - // Special-case private identifiers - switch (key.data) { - .e_private_identifier => |private| { - const name = p.loadNameFromRef(private.ref); - if (strings.eqlComptime(name, "#constructor")) { - p.log.addRangeError(p.source, key_range, "Invalid field name \"#constructor\"") catch unreachable; - } + const name = p.loadNameFromRef(private.ref); + if (strings.eqlComptime(name, "#constructor")) { + p.log.addRangeError(p.source, key_range, "Invalid method name \"#constructor\"") catch unreachable; + } + private.ref = p.declareSymbol(declare, key.loc, name) catch unreachable; + }, + else => {}, + } - var declare: js_ast.Symbol.Kind = undefined; - if (opts.is_static) { - declare = .private_static_field; - } else { - declare = .private_field; - } - private.ref = p.declareSymbol(declare, key.loc, name) catch unreachable; - }, - else => {}, + return G.Property{ + .ts_decorators = opts.ts_decorators, + .kind = kind, + .flags = Flags.Property{ + .is_computed = is_computed, + .is_method = true, + .is_static = opts.is_static, + }, + .key = key, + .value = value, + }; } - try p.lexer.expectOrInsertSemicolon(); + // Parse an object key/value pair + try p.lexer.expect(.t_colon); + const value = try p.parseExprOrBindings(.comma, errors); return G.Property{ - .ts_decorators = opts.ts_decorators, + .ts_decorators = &[_]Expr{}, .kind = kind, .flags = Flags.Property{ .is_computed = is_computed, - .is_static = opts.is_static, }, .key = key, - .initializer = initializer, + .value = value, }; } - // Parse a method expression - if (p.lexer.token == .t_open_paren or kind != .normal or opts.is_class or opts.is_async or opts.is_generator) { - if (p.lexer.token == .t_open_paren and kind != .get and kind != .set) { - // markSyntaxFeature object extensions + // By the time we call this, the identifier and type parameters have already + // been parsed. We need to start parsing from the "extends" clause. + pub fn parseClass(p: *P, class_keyword: logger.Range, name: ?js_ast.LocRef, class_opts: ParseClassOptions) !G.Class { + var extends: ?Expr = null; + + if (p.lexer.token == .t_extends) { + try p.lexer.next(); + extends = try p.parseExpr(.new); + + // TypeScript's type argument parser inside expressions backtracks if the + // first token after the end of the type parameter list is "{", so the + // parsed expression above will have backtracked if there are any type + // arguments. This means we have to re-parse for any type arguments here. + // This seems kind of wasteful to me but it's what the official compiler + // does and it probably doesn't have that high of a performance overhead + // because "extends" clauses aren't that frequent, so it should be ok. + if (is_typescript_enabled) { + _ = try p.skipTypeScriptTypeArguments(false); // isInsideJSXElement + } } - const loc = p.lexer.loc(); - const scope_index = p.pushScopeForParsePass(.function_args, loc) catch unreachable; - var is_constructor = false; + if (is_typescript_enabled and p.lexer.isContextualKeyword("implements")) { + try p.lexer.next(); - // Forbid the names "constructor" and "prototype" in some cases - if (opts.is_class and !is_computed) { - switch (key.data) { - .e_string => |str| { - if (!opts.is_static and str.eql(string, "constructor")) { - if (kind == .get) { - p.log.addRangeError(p.source, key_range, "Class constructor cannot be a getter") catch unreachable; - } else if (kind == .set) { - p.log.addRangeError(p.source, key_range, "Class constructor cannot be a setter") catch unreachable; - } else if (opts.is_async) { - p.log.addRangeError(p.source, key_range, "Class constructor cannot be an async function") catch unreachable; - } else if (opts.is_generator) { - p.log.addRangeError(p.source, key_range, "Class constructor cannot be a generator function") catch unreachable; - } else { - is_constructor = true; - } - } else if (opts.is_static and str.eql(string, "prototype")) { - p.log.addRangeError(p.source, key_range, "Invalid static method name \"prototype\"") catch unreachable; - } - }, - else => {}, + while (true) { + try p.skipTypeScriptType(.lowest); + if (p.lexer.token != .t_comma) { + break; + } + try p.lexer.next(); } } - var func = try p.parseFn(null, FnOrArrowDataParse{ - .async_range = opts.async_range, - .has_async_range = !opts.async_range.isEmpty(), - .allow_await = if (opts.is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, - .allow_yield = if (opts.is_generator) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, - .allow_super_call = opts.class_has_extends and is_constructor, - .allow_ts_decorators = opts.allow_ts_decorators, - .is_constructor = is_constructor, + var body_loc = p.lexer.loc(); + try p.lexer.expect(T.t_open_brace); + var properties = List(G.Property).init(p.allocator); - // Only allow omitting the body if we're parsing TypeScript class - .allow_missing_body_for_type_script = p.options.ts and opts.is_class, - }); + // Allow "in" and private fields inside class bodies + const old_allow_in = p.allow_in; + const old_allow_private_identifiers = p.allow_private_identifiers; + p.allow_in = true; + p.allow_private_identifiers = true; - // "class Foo { foo(): void; foo(): void {} }" - if (func.flags.is_forward_declaration) { - // Skip this property entirely - p.popAndDiscardScope(scope_index); - return null; - } + // A scope is needed for private identifiers + const scopeIndex = p.pushScopeForParsePass(.class_body, body_loc) catch unreachable; - p.popScope(); - func.flags.is_unique_formal_parameters = true; - const value = p.e(E.Function{ .func = func }, loc); + var opts = PropertyOpts{ .is_class = true, .allow_ts_decorators = class_opts.allow_ts_decorators, .class_has_extends = extends != null }; + while (p.lexer.token != T.t_close_brace) { + if (p.lexer.token == .t_semicolon) { + try p.lexer.next(); + continue; + } - // Enforce argument rules for accessors - switch (kind) { - .get => { - if (func.args.len > 0) { - const r = js_lexer.rangeOfIdentifier(p.source, func.args[0].binding.loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Getter {s} must have zero arguments", .{p.keyNameForError(key)}) catch unreachable; - } - }, - .set => { - if (func.args.len != 1) { - var r = js_lexer.rangeOfIdentifier(p.source, if (func.args.len > 0) func.args[0].binding.loc else loc); - if (func.args.len > 1) { - r = js_lexer.rangeOfIdentifier(p.source, func.args[1].binding.loc); - } - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Setter {s} must have exactly 1 argument (there are {d})", .{ p.keyNameForError(key), func.args.len }) catch unreachable; - } - }, - else => {}, - } + opts = PropertyOpts{ .is_class = true, .allow_ts_decorators = class_opts.allow_ts_decorators, .class_has_extends = extends != null }; - // Special-case private identifiers - switch (key.data) { - .e_private_identifier => |private| { - var declare: Symbol.Kind = undefined; - var suffix: string = ""; - switch (kind) { - .get => { - if (opts.is_static) { - declare = .private_static_get; - } else { - declare = .private_get; - } - suffix = "_get"; - }, - .set => { - if (opts.is_static) { - declare = .private_static_set; - } else { - declare = .private_set; - } - suffix = "_set"; - }, - else => { - if (opts.is_static) { - declare = .private_static_method; - } else { - declare = .private_method; - } - suffix = "_fn"; - }, - } + // Parse decorators for this property + const first_decorator_loc = p.lexer.loc(); + if (opts.allow_ts_decorators) { + opts.ts_decorators = try p.parseTypeScriptDecorators(); + } else { + opts.ts_decorators = &[_]Expr{}; + } - const name = p.loadNameFromRef(private.ref); - if (strings.eqlComptime(name, "#constructor")) { - p.log.addRangeError(p.source, key_range, "Invalid method name \"#constructor\"") catch unreachable; + // This property may turn out to be a type in TypeScript, which should be ignored + if (try p.parseProperty(.normal, &opts, null)) |property| { + properties.append(property) catch unreachable; + + // Forbid decorators on class constructors + if (opts.ts_decorators.len > 0) { + switch ((property.key orelse p.panic("Internal error: Expected property {s} to have a key.", .{property})).data) { + .e_string => |str| { + if (str.eql(string, "constructor")) { + p.log.addError(p.source, first_decorator_loc, "TypeScript does not allow decorators on class constructors") catch unreachable; + } + }, + else => {}, + } } - private.ref = p.declareSymbol(declare, key.loc, name) catch unreachable; - }, - else => {}, + } } - return G.Property{ - .ts_decorators = opts.ts_decorators, - .kind = kind, - .flags = Flags.Property{ - .is_computed = is_computed, - .is_method = true, - .is_static = opts.is_static, - }, - .key = key, - .value = value, - }; - } - - // Parse an object key/value pair - try p.lexer.expect(.t_colon); - const value = try p.parseExprOrBindings(.comma, errors); + if (class_opts.is_type_script_declare) { + p.popAndDiscardScope(scopeIndex); + } else { + p.popScope(); + } - return G.Property{ - .ts_decorators = &[_]Expr{}, - .kind = kind, - .flags = Flags.Property{ - .is_computed = is_computed, - }, - .key = key, - .value = value, - }; - } + p.allow_in = old_allow_in; + p.allow_private_identifiers = old_allow_private_identifiers; - // By the time we call this, the identifier and type parameters have already - // been parsed. We need to start parsing from the "extends" clause. - pub fn parseClass(p: *P, class_keyword: logger.Range, name: ?js_ast.LocRef, class_opts: ParseClassOptions) !G.Class { - var extends: ?Expr = null; + try p.lexer.expect(.t_close_brace); - if (p.lexer.token == .t_extends) { - try p.lexer.next(); - extends = try p.parseExpr(.new); + return G.Class{ + .class_name = name, + .extends = extends, + .ts_decorators = class_opts.ts_decorators, + .class_keyword = class_keyword, + .body_loc = body_loc, + .properties = properties.toOwnedSlice(), + }; + } - // TypeScript's type argument parser inside expressions backtracks if the - // first token after the end of the type parameter list is "{", so the - // parsed expression above will have backtracked if there are any type - // arguments. This means we have to re-parse for any type arguments here. - // This seems kind of wasteful to me but it's what the official compiler - // does and it probably doesn't have that high of a performance overhead - // because "extends" clauses aren't that frequent, so it should be ok. - if (p.options.ts) { - _ = try p.skipTypeScriptTypeArguments(false); // isInsideJSXElement + pub fn skipTypeScriptTypeArguments(p: *P, comptime isInsideJSXElement: bool) anyerror!bool { + switch (p.lexer.token) { + .t_less_than, .t_less_than_equals, .t_less_than_less_than, .t_less_than_less_than_equals => {}, + else => { + return false; + }, } - } - if (p.options.ts and p.lexer.isContextualKeyword("implements")) { - try p.lexer.next(); + try p.lexer.expectLessThan(false); while (true) { try p.skipTypeScriptType(.lowest); @@ -7451,4559 +7545,4459 @@ pub const P = struct { } try p.lexer.next(); } - } - var body_loc = p.lexer.loc(); - try p.lexer.expect(T.t_open_brace); - var properties = List(G.Property).init(p.allocator); - - // Allow "in" and private fields inside class bodies - const old_allow_in = p.allow_in; - const old_allow_private_identifiers = p.allow_private_identifiers; - p.allow_in = true; - p.allow_private_identifiers = true; + // This type argument list must end with a ">" + try p.lexer.expectGreaterThan(isInsideJSXElement); + return true; + } - // A scope is needed for private identifiers - const scopeIndex = p.pushScopeForParsePass(.class_body, body_loc) catch unreachable; + pub fn parseTemplateParts(p: *P, include_raw: bool) ![]E.TemplatePart { + var parts = List(E.TemplatePart).initCapacity(p.allocator, 1) catch unreachable; + // Allow "in" inside template literals + var oldAllowIn = p.allow_in; + p.allow_in = true; - var opts = PropertyOpts{ .is_class = true, .allow_ts_decorators = class_opts.allow_ts_decorators, .class_has_extends = extends != null }; - while (p.lexer.token != T.t_close_brace) { - if (p.lexer.token == .t_semicolon) { + parseTemplatePart: while (true) { try p.lexer.next(); - continue; - } - - opts = PropertyOpts{ .is_class = true, .allow_ts_decorators = class_opts.allow_ts_decorators, .class_has_extends = extends != null }; + var value = try p.parseExpr(.lowest); + var tail_loc = p.lexer.loc(); + try p.lexer.rescanCloseBraceAsTemplateToken(); - // Parse decorators for this property - const first_decorator_loc = p.lexer.loc(); - if (opts.allow_ts_decorators) { - opts.ts_decorators = try p.parseTypeScriptDecorators(); - } else { - opts.ts_decorators = &[_]Expr{}; - } + var tail = p.lexer.toEString(); - // This property may turn out to be a type in TypeScript, which should be ignored - if (try p.parseProperty(.normal, &opts, null)) |property| { - properties.append(property) catch unreachable; + parts.append(E.TemplatePart{ + .value = value, + .tail_loc = tail_loc, + .tail = tail, + }) catch unreachable; - // Forbid decorators on class constructors - if (opts.ts_decorators.len > 0) { - switch ((property.key orelse p.panic("Internal error: Expected property {s} to have a key.", .{property})).data) { - .e_string => |str| { - if (str.eql(string, "constructor")) { - p.log.addError(p.source, first_decorator_loc, "TypeScript does not allow decorators on class constructors") catch unreachable; - } - }, - else => {}, - } + if (p.lexer.token == .t_template_tail) { + try p.lexer.next(); + break :parseTemplatePart; } + std.debug.assert(p.lexer.token != .t_end_of_file); } + + p.allow_in = oldAllowIn; + + return parts.toOwnedSlice(); } - if (class_opts.is_type_script_declare) { - p.popAndDiscardScope(scopeIndex); - } else { - p.popScope(); + // This assumes the caller has already checked for TStringLiteral or TNoSubstitutionTemplateLiteral + pub fn parseStringLiteral(p: *P) anyerror!Expr { + const loc = p.lexer.loc(); + var str = p.lexer.toEString(); + str.prefer_template = p.lexer.token == .t_no_substitution_template_literal; + + const expr = p.e(str, loc); + try p.lexer.next(); + return expr; } - p.allow_in = old_allow_in; - p.allow_private_identifiers = old_allow_private_identifiers; + pub fn parseCallArgs(p: *P) anyerror![]Expr { + // Allow "in" inside call arguments + const old_allow_in = p.allow_in; + p.allow_in = true; + defer p.allow_in = old_allow_in; - try p.lexer.expect(.t_close_brace); + var args = List(Expr).init(p.allocator); + try p.lexer.expect(.t_open_paren); - return G.Class{ - .class_name = name, - .extends = extends, - .ts_decorators = class_opts.ts_decorators, - .class_keyword = class_keyword, - .body_loc = body_loc, - .properties = properties.toOwnedSlice(), - }; - } + while (p.lexer.token != .t_close_paren) { + const loc = p.lexer.loc(); + const is_spread = p.lexer.token == .t_dot_dot_dot; + if (is_spread) { + // p.mark_syntax_feature(compat.rest_argument, p.lexer.range()); + try p.lexer.next(); + } + var arg = try p.parseExpr(.comma); + if (is_spread) { + arg = p.e(E.Spread{ .value = arg }, loc); + } + args.append(arg) catch unreachable; + if (p.lexer.token != .t_comma) { + break; + } + try p.lexer.next(); + } - pub fn skipTypeScriptTypeArguments(p: *P, comptime isInsideJSXElement: bool) anyerror!bool { - switch (p.lexer.token) { - .t_less_than, .t_less_than_equals, .t_less_than_less_than, .t_less_than_less_than_equals => {}, - else => { - return false; - }, + try p.lexer.expect(.t_close_paren); + return args.toOwnedSlice(); } - try p.lexer.expectLessThan(false); - - while (true) { - try p.skipTypeScriptType(.lowest); - if (p.lexer.token != .t_comma) { - break; - } - try p.lexer.next(); + pub fn parseSuffix(p: *P, left: Expr, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { + return _parseSuffix(p, left, level, errors orelse &DeferredErrors.None, flags); } + pub fn _parseSuffix(p: *P, _left: Expr, level: Level, errors: *DeferredErrors, flags: Expr.EFlags) anyerror!Expr { + var expr: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; + var left = _left; + var loc = p.lexer.loc(); + var optional_chain: ?js_ast.OptionalChain = null; - // This type argument list must end with a ">" - try p.lexer.expectGreaterThan(isInsideJSXElement); - return true; - } + while (true) { + if (p.lexer.loc().start == p.after_arrow_body_loc.start) { + while (true) { + switch (p.lexer.token) { + .t_comma => { + if (level.gte(.comma)) { + return left; + } - pub fn parseTemplateParts(p: *P, include_raw: bool) ![]E.TemplatePart { - var parts = List(E.TemplatePart).initCapacity(p.allocator, 1) catch unreachable; - // Allow "in" inside template literals - var oldAllowIn = p.allow_in; - p.allow_in = true; + try p.lexer.next(); + left = p.e(E.Binary{ + .op = .bin_comma, + .left = left, + .right = try p.parseExpr(.comma), + }, left.loc); + }, + else => { + return left; + }, + } + } + } - parseTemplatePart: while (true) { - try p.lexer.next(); - var value = try p.parseExpr(.lowest); - var tail_loc = p.lexer.loc(); - try p.lexer.rescanCloseBraceAsTemplateToken(); + // Stop now if this token is forbidden to follow a TypeScript "as" cast + if (p.forbid_suffix_after_as_loc.start > -1 and p.lexer.loc().start == p.forbid_suffix_after_as_loc.start) { + return left; + } - var tail = p.lexer.toEString(); + // Reset the optional chain flag by default. That way we won't accidentally + // treat "c.d" as OptionalChainContinue in "a?.b + c.d". + var old_optional_chain = optional_chain; + optional_chain = null; + switch (p.lexer.token) { + .t_dot => { + try p.lexer.next(); + if (p.lexer.token == .t_private_identifier and p.allow_private_identifiers) { + // "a.#b" + // "a?.b.#c" + switch (left.data) { + .e_super => { + try p.lexer.expected(.t_identifier); + }, + else => {}, + } - parts.append(E.TemplatePart{ - .value = value, - .tail_loc = tail_loc, - .tail = tail, - }) catch unreachable; + var name = p.lexer.identifier; + var name_loc = p.lexer.loc(); + try p.lexer.next(); + const ref = p.storeNameInRef(name) catch unreachable; + left = p.e(E.Index{ + .target = left, + .index = p.e( + E.PrivateIdentifier{ + .ref = ref, + }, + name_loc, + ), + .optional_chain = old_optional_chain, + }, left.loc); + } else { + // "a.b" + // "a?.b.c" + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); + } - if (p.lexer.token == .t_template_tail) { - try p.lexer.next(); - break :parseTemplatePart; - } - std.debug.assert(p.lexer.token != .t_end_of_file); - } + var name = p.lexer.identifier; + var name_loc = p.lexer.loc(); + try p.lexer.next(); - p.allow_in = oldAllowIn; + left = p.e(E.Dot{ .target = left, .name = name, .name_loc = name_loc, .optional_chain = old_optional_chain }, left.loc); + } - return parts.toOwnedSlice(); - } + optional_chain = old_optional_chain; + }, + .t_question_dot => { + try p.lexer.next(); + var optional_start = js_ast.OptionalChain.start; - // This assumes the caller has already checked for TStringLiteral or TNoSubstitutionTemplateLiteral - pub fn parseStringLiteral(p: *P) anyerror!Expr { - const loc = p.lexer.loc(); - var str = p.lexer.toEString(); - str.prefer_template = p.lexer.token == .t_no_substitution_template_literal; + // TODO: Remove unnecessary optional chains + // if p.options.mangleSyntax { + // if isNullOrUndefined, _, ok := toNullOrUndefinedWithSideEffects(left.Data); ok and !isNullOrUndefined { + // optionalStart = js_ast.OptionalChainNone + // } + // } - const expr = p.e(str, loc); - try p.lexer.next(); - return expr; - } + switch (p.lexer.token) { + .t_open_bracket => { + // "a?.[b]" + try p.lexer.next(); - pub fn parseCallArgs(p: *P) anyerror![]Expr { - // Allow "in" inside call arguments - const old_allow_in = p.allow_in; - p.allow_in = true; - defer p.allow_in = old_allow_in; + // allow "in" inside the brackets; + const old_allow_in = p.allow_in; + p.allow_in = true; - var args = List(Expr).init(p.allocator); - try p.lexer.expect(.t_open_paren); + const index = try p.parseExpr(.lowest); - while (p.lexer.token != .t_close_paren) { - const loc = p.lexer.loc(); - const is_spread = p.lexer.token == .t_dot_dot_dot; - if (is_spread) { - // p.mark_syntax_feature(compat.rest_argument, p.lexer.range()); - try p.lexer.next(); - } - var arg = try p.parseExpr(.comma); - if (is_spread) { - arg = p.e(E.Spread{ .value = arg }, loc); - } - args.append(arg) catch unreachable; - if (p.lexer.token != .t_comma) { - break; - } - try p.lexer.next(); - } + p.allow_in = old_allow_in; - try p.lexer.expect(.t_close_paren); - return args.toOwnedSlice(); - } + try p.lexer.expect(.t_close_bracket); + left = p.e( + E.Index{ .target = left, .index = index, .optional_chain = optional_start }, + left.loc, + ); + }, - pub fn parseSuffix(p: *P, left: Expr, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { - return _parseSuffix(p, left, level, errors orelse &DeferredErrors.None, flags); - } - pub fn _parseSuffix(p: *P, _left: Expr, level: Level, errors: *DeferredErrors, flags: Expr.EFlags) anyerror!Expr { - var expr: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; - var left = _left; - var loc = p.lexer.loc(); - var optional_chain: ?js_ast.OptionalChain = null; - - while (true) { - if (p.lexer.loc().start == p.after_arrow_body_loc.start) { - while (true) { - switch (p.lexer.token) { - .t_comma => { - if (level.gte(.comma)) { - return left; - } + .t_open_paren => { + // "a?.()" + if (level.gte(.call)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ - .op = .bin_comma, - .left = left, - .right = try p.parseExpr(.comma), - }, left.loc); - }, - else => { - return left; - }, - } - } - } + left = p.e(E.Call{ + .target = left, + .args = try p.parseCallArgs(), + .optional_chain = optional_start, + }, left.loc); + }, + .t_less_than => { + // "a?.<T>()" + if (!is_typescript_enabled) { + try p.lexer.expected(.t_identifier); + } - // Stop now if this token is forbidden to follow a TypeScript "as" cast - if (p.forbid_suffix_after_as_loc.start > -1 and p.lexer.loc().start == p.forbid_suffix_after_as_loc.start) { - return left; - } + _ = try p.skipTypeScriptTypeArguments(false); + if (p.lexer.token != .t_open_paren) { + try p.lexer.expected(.t_open_paren); + } - // Reset the optional chain flag by default. That way we won't accidentally - // treat "c.d" as OptionalChainContinue in "a?.b + c.d". - var old_optional_chain = optional_chain; - optional_chain = null; - switch (p.lexer.token) { - .t_dot => { - try p.lexer.next(); - if (p.lexer.token == .t_private_identifier and p.allow_private_identifiers) { - // "a.#b" - // "a?.b.#c" - switch (left.data) { - .e_super => { - try p.lexer.expected(.t_identifier); + if (level.gte(.call)) { + return left; + } + + left = p.e( + E.Call{ .target = left, .args = try p.parseCallArgs(), .optional_chain = optional_start }, + left.loc, + ); }, - else => {}, + else => { + if (p.lexer.token == .t_private_identifier and p.allow_private_identifiers) { + // "a?.#b" + const name = p.lexer.identifier; + const name_loc = p.lexer.loc(); + try p.lexer.next(); + const ref = p.storeNameInRef(name) catch unreachable; + left = p.e(E.Index{ + .target = left, + .index = p.e( + E.PrivateIdentifier{ + .ref = ref, + }, + name_loc, + ), + .optional_chain = optional_start, + }, left.loc); + } else { + // "a?.b" + if (!p.lexer.isIdentifierOrKeyword()) { + try p.lexer.expect(.t_identifier); + } + const name = p.lexer.identifier; + const name_loc = p.lexer.loc(); + try p.lexer.next(); + + left = p.e(E.Dot{ + .target = left, + .name = name, + .name_loc = name_loc, + .optional_chain = optional_start, + }, left.loc); + } + }, + } + + // Only continue if we have started + if (optional_start == .start) { + optional_start = .ccontinue; + } + }, + .t_no_substitution_template_literal => { + if (old_optional_chain != null) { + p.log.addRangeError(p.source, p.lexer.range(), "Template literals cannot have an optional chain as a tag") catch unreachable; + } + // p.markSyntaxFeature(compat.TemplateLiteral, p.lexer.Range()); + const head = p.lexer.toEString(); + try p.lexer.next(); + left = p.e(E.Template{ + .tag = left, + .head = head, + }, left.loc); + }, + .t_template_head => { + if (old_optional_chain != null) { + p.log.addRangeError(p.source, p.lexer.range(), "Template literals cannot have an optional chain as a tag") catch unreachable; + } + // p.markSyntaxFeature(compat.TemplateLiteral, p.lexer.Range()); + const head = p.lexer.toEString(); + const partsGroup = try p.parseTemplateParts(true); + const tag = left; + left = p.e(E.Template{ .tag = tag, .head = head, .parts = partsGroup }, left.loc); + }, + .t_open_bracket => { + // When parsing a decorator, ignore EIndex expressions since they may be + // part of a computed property: + // + // class Foo { + // @foo ['computed']() {} + // } + // + // This matches the behavior of the TypeScript compiler. + if (flags == .ts_decorator) { + return left; } - var name = p.lexer.identifier; - var name_loc = p.lexer.loc(); try p.lexer.next(); - const ref = p.storeNameInRef(name) catch unreachable; + + // Allow "in" inside the brackets + const old_allow_in = p.allow_in; + p.allow_in = true; + + const index = try p.parseExpr(.lowest); + + p.allow_in = old_allow_in; + + try p.lexer.expect(.t_close_bracket); + left = p.e(E.Index{ .target = left, - .index = p.e( - E.PrivateIdentifier{ - .ref = ref, - }, - name_loc, - ), + .index = index, .optional_chain = old_optional_chain, }, left.loc); - } else { - // "a.b" - // "a?.b.c" - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); + optional_chain = old_optional_chain; + }, + .t_open_paren => { + if (level.gte(.call)) { + return left; } - var name = p.lexer.identifier; - var name_loc = p.lexer.loc(); + left = p.e( + E.Call{ + .target = left, + .args = try p.parseCallArgs(), + .optional_chain = old_optional_chain, + }, + left.loc, + ); + optional_chain = old_optional_chain; + }, + .t_question => { + if (level.gte(.conditional)) { + return left; + } try p.lexer.next(); - left = p.e(E.Dot{ .target = left, .name = name, .name_loc = name_loc, .optional_chain = old_optional_chain }, left.loc); - } + // Stop now if we're parsing one of these: + // "(a?) => {}" + // "(a?: b) => {}" + // "(a?, b?) => {}" + if (is_typescript_enabled and left.loc.start == p.latest_arrow_arg_loc.start and (p.lexer.token == .t_colon or + p.lexer.token == .t_close_paren or p.lexer.token == .t_comma)) + { + if (errors.is_disabled) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + errors.invalid_expr_after_question = p.lexer.range(); + return left; + } - optional_chain = old_optional_chain; - }, - .t_question_dot => { - try p.lexer.next(); - var optional_start = js_ast.OptionalChain.start; + // Allow "in" in between "?" and ":" + const old_allow_in = p.allow_in; + p.allow_in = true; - // TODO: Remove unnecessary optional chains - // if p.options.mangleSyntax { - // if isNullOrUndefined, _, ok := toNullOrUndefinedWithSideEffects(left.Data); ok and !isNullOrUndefined { - // optionalStart = js_ast.OptionalChainNone - // } - // } + const yes = try p.parseExpr(.comma); - switch (p.lexer.token) { - .t_open_bracket => { - // "a?.[b]" - try p.lexer.next(); + p.allow_in = old_allow_in; - // allow "in" inside the brackets; - const old_allow_in = p.allow_in; - p.allow_in = true; + try p.lexer.expect(.t_colon); + const no = try p.parseExpr(.comma); - const index = try p.parseExpr(.lowest); + left = p.e(E.If{ + .test_ = left, + .yes = yes, + .no = no, + }, left.loc); + }, + .t_exclamation => { + // Skip over TypeScript non-null assertions + if (p.lexer.has_newline_before) { + return left; + } - p.allow_in = old_allow_in; + if (!is_typescript_enabled) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - try p.lexer.expect(.t_close_bracket); - left = p.e( - E.Index{ .target = left, .index = index, .optional_chain = optional_start }, - left.loc, - ); - }, + if (level.gte(.postfix)) { + return left; + } - .t_open_paren => { - // "a?.()" - if (level.gte(.call)) { - return left; - } + try p.lexer.next(); + optional_chain = old_optional_chain; + }, + .t_minus_minus => { + if (p.lexer.has_newline_before or level.gte(.postfix)) { + return left; + } - left = p.e(E.Call{ - .target = left, - .args = try p.parseCallArgs(), - .optional_chain = optional_start, - }, left.loc); - }, - .t_less_than => { - // "a?.<T>()" - if (!p.options.ts) { - try p.lexer.expected(.t_identifier); - } + try p.lexer.next(); + left = p.e(E.Unary{ .op = .un_post_dec, .value = left }, left.loc); + }, + .t_plus_plus => { + if (p.lexer.has_newline_before or level.gte(.postfix)) { + return left; + } - _ = try p.skipTypeScriptTypeArguments(false); - if (p.lexer.token != .t_open_paren) { - try p.lexer.expected(.t_open_paren); - } + try p.lexer.next(); + left = p.e(E.Unary{ .op = .un_post_inc, .value = left }, left.loc); + }, + .t_comma => { + if (level.gte(.comma)) { + return left; + } - if (level.gte(.call)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_comma, .left = left, .right = try p.parseExpr(.comma) }, left.loc); + }, + .t_plus => { + if (level.gte(.add)) { + return left; + } - left = p.e( - E.Call{ .target = left, .args = try p.parseCallArgs(), .optional_chain = optional_start }, - left.loc, - ); - }, - else => { - if (p.lexer.token == .t_private_identifier and p.allow_private_identifiers) { - // "a?.#b" - const name = p.lexer.identifier; - const name_loc = p.lexer.loc(); - try p.lexer.next(); - const ref = p.storeNameInRef(name) catch unreachable; - left = p.e(E.Index{ - .target = left, - .index = p.e( - E.PrivateIdentifier{ - .ref = ref, - }, - name_loc, - ), - .optional_chain = optional_start, - }, left.loc); - } else { - // "a?.b" - if (!p.lexer.isIdentifierOrKeyword()) { - try p.lexer.expect(.t_identifier); - } - const name = p.lexer.identifier; - const name_loc = p.lexer.loc(); - try p.lexer.next(); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_add, .left = left, .right = try p.parseExpr(.add) }, left.loc); + }, + .t_plus_equals => { + if (level.gte(.assign)) { + return left; + } - left = p.e(E.Dot{ - .target = left, - .name = name, - .name_loc = name_loc, - .optional_chain = optional_start, - }, left.loc); - } - }, - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_add_assign, .left = left, .right = try p.parseExpr(@intToEnum(Op.Level, @enumToInt(Op.Level.assign) - 1)) }, left.loc); + }, + .t_minus => { + if (level.gte(.add)) { + return left; + } - // Only continue if we have started - if (optional_start == .start) { - optional_start = .ccontinue; - } - }, - .t_no_substitution_template_literal => { - if (old_optional_chain != null) { - p.log.addRangeError(p.source, p.lexer.range(), "Template literals cannot have an optional chain as a tag") catch unreachable; - } - // p.markSyntaxFeature(compat.TemplateLiteral, p.lexer.Range()); - const head = p.lexer.toEString(); - try p.lexer.next(); - left = p.e(E.Template{ - .tag = left, - .head = head, - }, left.loc); - }, - .t_template_head => { - if (old_optional_chain != null) { - p.log.addRangeError(p.source, p.lexer.range(), "Template literals cannot have an optional chain as a tag") catch unreachable; - } - // p.markSyntaxFeature(compat.TemplateLiteral, p.lexer.Range()); - const head = p.lexer.toEString(); - const partsGroup = try p.parseTemplateParts(true); - const tag = left; - left = p.e(E.Template{ .tag = tag, .head = head, .parts = partsGroup }, left.loc); - }, - .t_open_bracket => { - // When parsing a decorator, ignore EIndex expressions since they may be - // part of a computed property: - // - // class Foo { - // @foo ['computed']() {} - // } - // - // This matches the behavior of the TypeScript compiler. - if (flags == .ts_decorator) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_sub, .left = left, .right = try p.parseExpr(.add) }, left.loc); + }, + .t_minus_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_sub_assign, .left = left, .right = try p.parseExpr(Op.Level.sub(Op.Level.assign, 1)) }, left.loc); + }, + .t_asterisk => { + if (level.gte(.multiply)) { + return left; + } - // Allow "in" inside the brackets - const old_allow_in = p.allow_in; - p.allow_in = true; + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_mul, .left = left, .right = try p.parseExpr(.multiply) }, left.loc); + }, + .t_asterisk_asterisk => { + if (level.gte(.exponentiation)) { + return left; + } - const index = try p.parseExpr(.lowest); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_pow, .left = left, .right = try p.parseExpr(Op.Level.exponentiation.sub(1)) }, left.loc); + }, + .t_asterisk_asterisk_equals => { + if (level.gte(.assign)) { + return left; + } - p.allow_in = old_allow_in; + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_pow_assign, .left = left, .right = try p.parseExpr(Op.Level.assign.sub(1)) }, left.loc); + }, + .t_asterisk_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.expect(.t_close_bracket); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_mul_assign, .left = left, .right = try p.parseExpr(Op.Level.assign.sub(1)) }, left.loc); + }, + .t_percent => { + if (level.gte(.multiply)) { + return left; + } - left = p.e(E.Index{ - .target = left, - .index = index, - .optional_chain = old_optional_chain, - }, left.loc); - optional_chain = old_optional_chain; - }, - .t_open_paren => { - if (level.gte(.call)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_rem, .left = left, .right = try p.parseExpr(Op.Level.multiply) }, left.loc); + }, + .t_percent_equals => { + if (level.gte(.assign)) { + return left; + } - left = p.e( - E.Call{ - .target = left, - .args = try p.parseCallArgs(), - .optional_chain = old_optional_chain, - }, - left.loc, - ); - optional_chain = old_optional_chain; - }, - .t_question => { - if (level.gte(.conditional)) { - return left; - } - try p.lexer.next(); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_rem_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_slash => { + if (level.gte(.multiply)) { + return left; + } - // Stop now if we're parsing one of these: - // "(a?) => {}" - // "(a?: b) => {}" - // "(a?, b?) => {}" - if (p.options.ts and left.loc.start == p.latest_arrow_arg_loc.start and (p.lexer.token == .t_colon or - p.lexer.token == .t_close_paren or p.lexer.token == .t_comma)) - { - if (errors.is_disabled) { + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_div, .left = left, .right = try p.parseExpr(Level.multiply) }, left.loc); + }, + .t_slash_equals => { + if (level.gte(.assign)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_div_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_equals_equals => { + if (level.gte(.equals)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_loose_eq, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + }, + .t_exclamation_equals => { + if (level.gte(.equals)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_loose_ne, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + }, + .t_equals_equals_equals => { + if (level.gte(.equals)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_strict_eq, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + }, + .t_exclamation_equals_equals => { + if (level.gte(.equals)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_strict_ne, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + }, + .t_less_than => { + // TypeScript allows type arguments to be specified with angle brackets + // inside an expression. Unlike in other languages, this unfortunately + // appears to require backtracking to parse. + if (is_typescript_enabled and p.trySkipTypeScriptTypeArgumentsWithBacktracking()) { + optional_chain = old_optional_chain; + continue; + } + + if (level.gte(.compare)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_lt, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + .t_less_than_equals => { + if (level.gte(.compare)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_le, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + .t_greater_than => { + if (level.gte(.compare)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_gt, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + .t_greater_than_equals => { + if (level.gte(.compare)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_ge, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + .t_less_than_less_than => { + if (level.gte(.shift)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_shl, .left = left, .right = try p.parseExpr(.shift) }, left.loc); + }, + .t_less_than_less_than_equals => { + if (level.gte(.assign)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_greater_than_greater_than => { + if (level.gte(.shift)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_shr, .left = left, .right = try p.parseExpr(.shift) }, left.loc); + }, + .t_greater_than_greater_than_equals => { + if (level.gte(.assign)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_greater_than_greater_than_greater_than => { + if (level.gte(.shift)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_u_shr, .left = left, .right = try p.parseExpr(.shift) }, left.loc); + }, + .t_greater_than_greater_than_greater_than_equals => { + if (level.gte(.assign)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_u_shr_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_question_question => { + if (level.gte(.nullish_coalescing)) { + return left; + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_nullish_coalescing, .left = left, .right = try p.parseExpr(.nullish_coalescing) }, left.loc); + }, + .t_question_question_equals => { + if (level.gte(.assign)) { + return left; + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_nullish_coalescing_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_bar_bar => { + if (level.gte(.logical_or)) { + return left; + } + + // Prevent "||" inside "??" from the right + if (level.eql(.nullish_coalescing)) { try p.lexer.unexpected(); return error.SyntaxError; } - errors.invalid_expr_after_question = p.lexer.range(); - return left; - } - // Allow "in" in between "?" and ":" - const old_allow_in = p.allow_in; - p.allow_in = true; + try p.lexer.next(); + const right = try p.parseExpr(.logical_or); + left = p.e(E.Binary{ .op = Op.Code.bin_logical_or, .left = left, .right = right }, left.loc); - const yes = try p.parseExpr(.comma); + if (level.lt(.nullish_coalescing)) { + left = try p.parseSuffix(left, Level.nullish_coalescing.add(1), null, flags); - p.allow_in = old_allow_in; + if (p.lexer.token == .t_question_question) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + } + }, + .t_bar_bar_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.expect(.t_colon); - const no = try p.parseExpr(.comma); + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_logical_or_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_ampersand_ampersand => { + if (level.gte(.logical_and)) { + return left; + } - left = p.e(E.If{ - .test_ = left, - .yes = yes, - .no = no, - }, left.loc); - }, - .t_exclamation => { - // Skip over TypeScript non-null assertions - if (p.lexer.has_newline_before) { - return left; - } + // Prevent "&&" inside "??" from the right + if (level.eql(.nullish_coalescing)) { + try p.lexer.unexpected(); + return error.SyntaxError; + } - if (!p.options.ts) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_logical_and, .left = left, .right = try p.parseExpr(.logical_and) }, left.loc); - if (level.gte(.postfix)) { - return left; - } + // Prevent "&&" inside "??" from the left + if (level.lt(.nullish_coalescing)) { + left = try p.parseSuffix(left, Level.nullish_coalescing.add(1), null, flags); - try p.lexer.next(); - optional_chain = old_optional_chain; - }, - .t_minus_minus => { - if (p.lexer.has_newline_before or level.gte(.postfix)) { - return left; - } + if (p.lexer.token == .t_question_question) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + } + }, + .t_ampersand_ampersand_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Unary{ .op = .un_post_dec, .value = left }, left.loc); - }, - .t_plus_plus => { - if (p.lexer.has_newline_before or level.gte(.postfix)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_logical_and_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_bar => { + if (level.gte(.bitwise_or)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Unary{ .op = .un_post_inc, .value = left }, left.loc); - }, - .t_comma => { - if (level.gte(.comma)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_bitwise_or, .left = left, .right = try p.parseExpr(.bitwise_or) }, left.loc); + }, + .t_bar_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_comma, .left = left, .right = try p.parseExpr(.comma) }, left.loc); - }, - .t_plus => { - if (level.gte(.add)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_bitwise_or_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_ampersand => { + if (level.gte(.bitwise_and)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_add, .left = left, .right = try p.parseExpr(.add) }, left.loc); - }, - .t_plus_equals => { - if (level.gte(.assign)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_bitwise_and, .left = left, .right = try p.parseExpr(.bitwise_and) }, left.loc); + }, + .t_ampersand_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_add_assign, .left = left, .right = try p.parseExpr(@intToEnum(Op.Level, @enumToInt(Op.Level.assign) - 1)) }, left.loc); - }, - .t_minus => { - if (level.gte(.add)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_caret => { + if (level.gte(.bitwise_xor)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_sub, .left = left, .right = try p.parseExpr(.add) }, left.loc); - }, - .t_minus_equals => { - if (level.gte(.assign)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_bitwise_xor, .left = left, .right = try p.parseExpr(.bitwise_xor) }, left.loc); + }, + .t_caret_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_sub_assign, .left = left, .right = try p.parseExpr(Op.Level.sub(Op.Level.assign, 1)) }, left.loc); - }, - .t_asterisk => { - if (level.gte(.multiply)) { - return left; - } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_bitwise_xor_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_equals => { + if (level.gte(.assign)) { + return left; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_mul, .left = left, .right = try p.parseExpr(.multiply) }, left.loc); - }, - .t_asterisk_asterisk => { - if (level.gte(.exponentiation)) { - return left; - } + try p.lexer.next(); - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_pow, .left = left, .right = try p.parseExpr(Op.Level.exponentiation.sub(1)) }, left.loc); - }, - .t_asterisk_asterisk_equals => { - if (level.gte(.assign)) { - return left; - } + left = p.e(E.Binary{ .op = .bin_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + }, + .t_in => { + if (level.gte(.compare) or !p.allow_in) { + return left; + } + + // Warn about "!a in b" instead of "!(a in b)" + switch (left.data) { + .e_unary => |unary| { + if (unary.op == .un_not) { + // TODO: + // p.log.addRangeWarning(source: ?Source, r: Range, text: string) + } + }, + else => {}, + } + + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_in, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + .t_instanceof => { + if (level.gte(.compare)) { + return left; + } + + // Warn about "!a instanceof b" instead of "!(a instanceof b)". Here's an + // example of code with this problem: https://github.com/mrdoob/three.js/pull/11182. + if (!p.options.suppress_warnings_about_weird_code) { + switch (left.data) { + .e_unary => |unary| { + if (unary.op == .un_not) { + // TODO: + // p.log.addRangeWarning(source: ?Source, r: Range, text: string) + } + }, + else => {}, + } + } + try p.lexer.next(); + left = p.e(E.Binary{ .op = .bin_instanceof, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + }, + else => { + // Handle the TypeScript "as" operator + if (is_typescript_enabled and level.lt(.compare) and !p.lexer.has_newline_before and p.lexer.isContextualKeyword("as")) { + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + + // These tokens are not allowed to follow a cast expression. This isn't + // an outright error because it may be on a new line, in which case it's + // the start of a new expression when it's after a cast: + // + // x = y as z + // (something); + // + switch (p.lexer.token) { + .t_plus_plus, + .t_minus_minus, + .t_no_substitution_template_literal, + .t_template_head, + .t_open_paren, + .t_open_bracket, + .t_question_dot, + => { + p.forbid_suffix_after_as_loc = p.lexer.loc(); + return left; + }, + else => {}, + } + + if (p.lexer.token.isAssign()) { + p.forbid_suffix_after_as_loc = p.lexer.loc(); + return left; + } + continue; + } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_pow_assign, .left = left, .right = try p.parseExpr(Op.Level.assign.sub(1)) }, left.loc); - }, - .t_asterisk_equals => { - if (level.gte(.assign)) { return left; - } + }, + } + } + } + pub fn panic(p: *P, comptime str: string, args: anytype) noreturn { + var panic_buffer = p.allocator.alloc(u8, 32 * 1024) catch unreachable; + var panic_stream = std.io.fixedBufferStream(panic_buffer); + p.log.addRangeErrorFmt(p.source, p.lexer.range(), p.allocator, str, args) catch unreachable; + p.log.print(panic_stream.writer()) catch unreachable; + Global.panic("{s}", .{panic_buffer}); + } + + pub fn _parsePrefix(p: *P, level: Level, errors: *DeferredErrors, flags: Expr.EFlags) anyerror!Expr { + const loc = p.lexer.loc(); + const l = @enumToInt(level); + // Output.print("Parse Prefix {s}:{s} @{s} ", .{ p.lexer.token, p.lexer.raw(), @tagName(level) }); + + switch (p.lexer.token) { + .t_super => { + const superRange = p.lexer.range(); try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_mul_assign, .left = left, .right = try p.parseExpr(Op.Level.assign.sub(1)) }, left.loc); - }, - .t_percent => { - if (level.gte(.multiply)) { - return left; + + switch (p.lexer.token) { + .t_open_paren => { + if (l < @enumToInt(Level.call) and p.fn_or_arrow_data_parse.allow_super_call) { + return p.e(E.Super{}, loc); + } + }, + .t_dot, .t_open_bracket => { + return p.e(E.Super{}, loc); + }, + else => {}, } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_rem, .left = left, .right = try p.parseExpr(Op.Level.multiply) }, left.loc); + p.log.addRangeError(p.source, superRange, "Unexpected \"super\"") catch unreachable; + return p.e(E.Super{}, loc); }, - .t_percent_equals => { - if (level.gte(.assign)) { - return left; + .t_open_paren => { + try p.lexer.next(); + + // Arrow functions aren't allowed in the middle of expressions + if (level.gt(.assign)) { + // Allow "in" inside parentheses + const oldAllowIn = p.allow_in; + p.allow_in = true; + + var value = try p.parseExpr(Level.lowest); + p.markExprAsParenthesized(&value); + try p.lexer.expect(.t_close_paren); + + p.allow_in = oldAllowIn; + return value; } + return p.parseParenExpr(loc, level, ParenExprOpts{}); + }, + .t_false => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_rem_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Boolean{ .value = false }, loc); }, - .t_slash => { - if (level.gte(.multiply)) { - return left; - } - + .t_true => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_div, .left = left, .right = try p.parseExpr(Level.multiply) }, left.loc); + return p.e(E.Boolean{ .value = true }, loc); }, - .t_slash_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_null => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_div_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Null{}, loc); }, - .t_equals_equals => { - if (level.gte(.equals)) { - return left; - } - + .t_this => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_loose_eq, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + return Expr{ .data = Prefill.Data.This, .loc = loc }; }, - .t_exclamation_equals => { - if (level.gte(.equals)) { - return left; + .t_private_identifier => { + if (!p.allow_private_identifiers or !p.allow_in) { + try p.lexer.unexpected(); + return error.SyntaxError; } + const name = p.lexer.identifier; try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_loose_ne, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); - }, - .t_equals_equals_equals => { - if (level.gte(.equals)) { - return left; + + // Check for "#foo in bar" + if (p.lexer.token != .t_in) { + try p.lexer.expected(.t_in); } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_strict_eq, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); + return p.e(E.PrivateIdentifier{ .ref = try p.storeNameInRef(name) }, loc); }, - .t_exclamation_equals_equals => { - if (level.gte(.equals)) { - return left; - } + .t_identifier => { + const name = p.lexer.identifier; + const name_range = p.lexer.range(); + const raw = p.lexer.raw(); try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_strict_ne, .left = left, .right = try p.parseExpr(Level.equals) }, left.loc); - }, - .t_less_than => { - // TypeScript allows type arguments to be specified with angle brackets - // inside an expression. Unlike in other languages, this unfortunately - // appears to require backtracking to parse. - if (p.options.ts and p.trySkipTypeScriptTypeArgumentsWithBacktracking()) { - optional_chain = old_optional_chain; - continue; + + // Handle async and await expressions + switch (AsyncPrefixExpression.find(name)) { + .is_async => { + if ((raw.ptr == name.ptr and raw.len == name.len) or AsyncPrefixExpression.find(raw) == .is_async) { + return try p.parseAsyncPrefixExpr(name_range, level); + } + }, + + .is_await => { + switch (p.fn_or_arrow_data_parse.allow_await) { + .forbid_all => { + p.log.addRangeError(p.source, name_range, "The keyword \"await\" cannot be used here.") catch unreachable; + }, + .allow_expr => { + if (AsyncPrefixExpression.find(raw) != .is_await) { + p.log.addRangeError(p.source, name_range, "The keyword \"await\" cannot be escaped.") catch unreachable; + } else { + if (p.fn_or_arrow_data_parse.is_top_level) { + p.top_level_await_keyword = name_range; + } + + if (p.fn_or_arrow_data_parse.track_arrow_arg_errors) { + p.fn_or_arrow_data_parse.arrow_arg_errors.invalid_expr_await = name_range; + } + + const value = try p.parseExpr(.prefix); + if (p.lexer.token == T.t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; + } + + return p.e(E.Await{ .value = value }, loc); + } + }, + else => {}, + } + }, + + .is_yield => { + switch (p.fn_or_arrow_data_parse.allow_yield) { + .forbid_all => { + p.log.addRangeError(p.source, name_range, "The keyword \"yield\" cannot be used here") catch unreachable; + }, + .allow_expr => { + if (AsyncPrefixExpression.find(raw) != .is_yield) { + p.log.addRangeError(p.source, name_range, "The keyword \"yield\" cannot be escaped") catch unreachable; + } else { + if (level.gt(.assign)) { + p.log.addRangeError(p.source, name_range, "Cannot use a \"yield\" here without parentheses") catch unreachable; + } + + if (p.fn_or_arrow_data_parse.track_arrow_arg_errors) { + p.fn_or_arrow_data_parse.arrow_arg_errors.invalid_expr_yield = name_range; + } + + return p.parseYieldExpr(loc); + } + }, + // .allow_ident => { + + // }, + else => { + // Try to gracefully recover if "yield" is used in the wrong place + if (!p.lexer.has_newline_before) { + switch (p.lexer.token) { + .t_null, .t_identifier, .t_false, .t_true, .t_numeric_literal, .t_big_integer_literal, .t_string_literal => { + p.log.addRangeError(p.source, name_range, "Cannot use \"yield\" outside a generator function") catch unreachable; + }, + else => {}, + } + } + }, + } + }, + .none => {}, } - if (level.gte(.compare)) { - return left; + // Handle the start of an arrow expression + if (p.lexer.token == .t_equals_greater_than and level.lte(.assign)) { + const ref = p.storeNameInRef(name) catch unreachable; + var args = p.allocator.alloc(Arg, 1) catch unreachable; + args[0] = Arg{ .binding = p.b(B.Identifier{ + .ref = ref, + }, loc) }; + + _ = p.pushScopeForParsePass(.function_args, loc) catch unreachable; + defer p.popScope(); + // Output.print("HANDLE START ", .{}); + return p.e(p.parseArrowBody(args, p.m(FnOrArrowDataParse{})) catch unreachable, loc); } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_lt, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + + const ref = p.storeNameInRef(name) catch unreachable; + + return p.e(E.Identifier{ + .ref = ref, + }, loc); }, - .t_less_than_equals => { - if (level.gte(.compare)) { - return left; - } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_le, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + .t_string_literal, .t_no_substitution_template_literal => { + return try p.parseStringLiteral(); }, - .t_greater_than => { - if (level.gte(.compare)) { - return left; - } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_gt, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + .t_template_head => { + var head = p.lexer.toEString(); + + const parts = try p.parseTemplateParts(false); + + // Check if TemplateLiteral is unsupported. We don't care for this product.` + // if () + + return p.e(E.Template{ + .head = head, + .parts = parts, + }, loc); }, - .t_greater_than_equals => { - if (level.gte(.compare)) { - return left; - } + .t_numeric_literal => { + const value = p.e(E.Number{ .value = p.lexer.number }, loc); + // p.checkForLegacyOctalLiteral() try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_ge, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + return value; }, - .t_less_than_less_than => { - if (level.gte(.shift)) { - return left; - } + .t_big_integer_literal => { + const value = p.lexer.identifier; + // markSyntaxFeature bigInt try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_shl, .left = left, .right = try p.parseExpr(.shift) }, left.loc); + return p.e(E.BigInt{ .value = value }, loc); }, - .t_less_than_less_than_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_slash, .t_slash_equals => { + try p.lexer.scanRegExp(); + const value = p.lexer.raw(); try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.RegExp{ .value = value }, loc); }, - .t_greater_than_greater_than => { - if (level.gte(.shift)) { - return left; - } + .t_void => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_shr, .left = left, .right = try p.parseExpr(.shift) }, left.loc); - }, - .t_greater_than_greater_than_equals => { - if (level.gte(.assign)) { - return left; + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Unary{ + .op = .un_void, + .value = value, + }, loc); }, - .t_greater_than_greater_than_greater_than => { - if (level.gte(.shift)) { - return left; - } + .t_typeof => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_u_shr, .left = left, .right = try p.parseExpr(.shift) }, left.loc); - }, - .t_greater_than_greater_than_greater_than_equals => { - if (level.gte(.assign)) { - return left; + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_u_shr_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Unary{ .op = .un_typeof, .value = value }, loc); }, - .t_question_question => { - if (level.gte(.nullish_coalescing)) { - return left; - } + .t_delete => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_nullish_coalescing, .left = left, .right = try p.parseExpr(.nullish_coalescing) }, left.loc); - }, - .t_question_question_equals => { - if (level.gte(.assign)) { - return left; + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; } + // TODO: add error deleting private identifier + // const private = value.data.e_private_identifier; + // if (private) |private| { + // const name = p.loadNameFromRef(private.ref); + // p.log.addRangeError(index.loc, ) + // } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_nullish_coalescing_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Unary{ .op = .un_delete, .value = value }, loc); }, - .t_bar_bar => { - if (level.gte(.logical_or)) { - return left; - } - - // Prevent "||" inside "??" from the right - if (level.eql(.nullish_coalescing)) { + .t_plus => { + try p.lexer.next(); + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { try p.lexer.unexpected(); return error.SyntaxError; } - try p.lexer.next(); - const right = try p.parseExpr(.logical_or); - left = p.e(E.Binary{ .op = Op.Code.bin_logical_or, .left = left, .right = right }, left.loc); - - if (level.lt(.nullish_coalescing)) { - left = try p.parseSuffix(left, Level.nullish_coalescing.add(1), null, flags); - - if (p.lexer.token == .t_question_question) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - } + return p.e(E.Unary{ .op = .un_pos, .value = value }, loc); }, - .t_bar_bar_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_minus => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_logical_or_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); - }, - .t_ampersand_ampersand => { - if (level.gte(.logical_and)) { - return left; - } - - // Prevent "&&" inside "??" from the right - if (level.eql(.nullish_coalescing)) { + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { try p.lexer.unexpected(); return error.SyntaxError; } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_logical_and, .left = left, .right = try p.parseExpr(.logical_and) }, left.loc); - - // Prevent "&&" inside "??" from the left - if (level.lt(.nullish_coalescing)) { - left = try p.parseSuffix(left, Level.nullish_coalescing.add(1), null, flags); - - if (p.lexer.token == .t_question_question) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - } + return p.e(E.Unary{ .op = .un_neg, .value = value }, loc); }, - .t_ampersand_ampersand_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_tilde => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_logical_and_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); - }, - .t_bar => { - if (level.gte(.bitwise_or)) { - return left; + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_bitwise_or, .left = left, .right = try p.parseExpr(.bitwise_or) }, left.loc); + return p.e(E.Unary{ .op = .un_cpl, .value = value }, loc); }, - .t_bar_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_exclamation => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_bitwise_or_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); - }, - .t_ampersand => { - if (level.gte(.bitwise_and)) { - return left; + const value = try p.parseExpr(.prefix); + if (p.lexer.token == .t_asterisk_asterisk) { + try p.lexer.unexpected(); + return error.SyntaxError; } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_bitwise_and, .left = left, .right = try p.parseExpr(.bitwise_and) }, left.loc); + return p.e(E.Unary{ .op = .un_not, .value = value }, loc); }, - .t_ampersand_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_minus_minus => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_shl_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + return p.e(E.Unary{ .op = .un_pre_dec, .value = try p.parseExpr(.prefix) }, loc); }, - .t_caret => { - if (level.gte(.bitwise_xor)) { - return left; - } - + .t_plus_plus => { try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_bitwise_xor, .left = left, .right = try p.parseExpr(.bitwise_xor) }, left.loc); + return p.e(E.Unary{ .op = .un_pre_inc, .value = try p.parseExpr(.prefix) }, loc); }, - .t_caret_equals => { - if (level.gte(.assign)) { - return left; - } - - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_bitwise_xor_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); + .t_function => { + return try p.parseFnExpr(loc, false, logger.Range.None); }, - .t_equals => { - if (level.gte(.assign)) { - return left; - } - + .t_class => { + const classKeyword = p.lexer.range(); + // markSyntaxFEatuer class try p.lexer.next(); + var name: ?js_ast.LocRef = null; - left = p.e(E.Binary{ .op = .bin_assign, .left = left, .right = try p.parseExpr(Level.assign.sub(1)) }, left.loc); - }, - .t_in => { - if (level.gte(.compare) or !p.allow_in) { - return left; - } + _ = p.pushScopeForParsePass(.class_name, loc) catch unreachable; - // Warn about "!a in b" instead of "!(a in b)" - switch (left.data) { - .e_unary => |unary| { - if (unary.op == .un_not) { - // TODO: - // p.log.addRangeWarning(source: ?Source, r: Range, text: string) - } - }, - else => {}, + // Parse an optional class name + if (p.lexer.token == .t_identifier and !js_lexer.StrictModeReservedWords.has(p.lexer.identifier)) { + name = js_ast.LocRef{ .loc = p.lexer.loc(), .ref = p.newSymbol(.other, p.lexer.identifier) catch unreachable }; + try p.lexer.next(); } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_in, .left = left, .right = try p.parseExpr(.compare) }, left.loc); - }, - .t_instanceof => { - if (level.gte(.compare)) { - return left; + // Even anonymous classes can have TypeScript type parameters + if (is_typescript_enabled) { + try p.skipTypeScriptTypeParameters(); } - // Warn about "!a instanceof b" instead of "!(a instanceof b)". Here's an - // example of code with this problem: https://github.com/mrdoob/three.js/pull/11182. - if (!p.options.suppress_warnings_about_weird_code) { - switch (left.data) { - .e_unary => |unary| { - if (unary.op == .un_not) { - // TODO: - // p.log.addRangeWarning(source: ?Source, r: Range, text: string) - } - }, - else => {}, - } - } - try p.lexer.next(); - left = p.e(E.Binary{ .op = .bin_instanceof, .left = left, .right = try p.parseExpr(.compare) }, left.loc); + const class = try p.parseClass(classKeyword, name, ParseClassOptions{}); + p.popScope(); + + return p.e(class, loc); }, - else => { - // Handle the TypeScript "as" operator - if (p.options.ts and level.lt(.compare) and !p.lexer.has_newline_before and p.lexer.isContextualKeyword("as")) { - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); + .t_new => { + try p.lexer.next(); - // These tokens are not allowed to follow a cast expression. This isn't - // an outright error because it may be on a new line, in which case it's - // the start of a new expression when it's after a cast: - // - // x = y as z - // (something); - // - switch (p.lexer.token) { - .t_plus_plus, - .t_minus_minus, - .t_no_substitution_template_literal, - .t_template_head, - .t_open_paren, - .t_open_bracket, - .t_question_dot, - => { - p.forbid_suffix_after_as_loc = p.lexer.loc(); - return left; - }, - else => {}, + // Special-case the weird "new.target" expression here + if (p.lexer.token == .t_dot) { + try p.lexer.next(); + if (p.lexer.token != .t_identifier or !strings.eqlComptime(p.lexer.raw(), "target")) { + try p.lexer.unexpected(); + return error.SyntaxError; } - if (p.lexer.token.isAssign()) { - p.forbid_suffix_after_as_loc = p.lexer.loc(); - return left; - } - continue; + const r = logger.Range{ .loc = loc, .len = p.lexer.range().end().start - loc.start }; + try p.lexer.next(); + return p.e(E.NewTarget{}, loc); } - return left; - }, - } - } - } - - pub fn panic(p: *P, comptime str: string, args: anytype) noreturn { - var panic_buffer = p.allocator.alloc(u8, 32 * 1024) catch unreachable; - var panic_stream = std.io.fixedBufferStream(panic_buffer); - p.log.addRangeErrorFmt(p.source, p.lexer.range(), p.allocator, str, args) catch unreachable; - p.log.print(panic_stream.writer()) catch unreachable; - Global.panic("{s}", .{panic_buffer}); - } - - pub fn _parsePrefix(p: *P, level: Level, errors: *DeferredErrors, flags: Expr.EFlags) anyerror!Expr { - const loc = p.lexer.loc(); - const l = @enumToInt(level); - // Output.print("Parse Prefix {s}:{s} @{s} ", .{ p.lexer.token, p.lexer.raw(), @tagName(level) }); - - switch (p.lexer.token) { - .t_super => { - const superRange = p.lexer.range(); - try p.lexer.next(); + const target = try p.parseExprWithFlags(.member, flags); + var args: []Expr = &([_]Expr{}); - switch (p.lexer.token) { - .t_open_paren => { - if (l < @enumToInt(Level.call) and p.fn_or_arrow_data_parse.allow_super_call) { - return p.e(E.Super{}, loc); + if (is_typescript_enabled) { + // Skip over TypeScript non-null assertions + if (p.lexer.token == .t_exclamation and !p.lexer.has_newline_before) { + try p.lexer.next(); } - }, - .t_dot, .t_open_bracket => { - return p.e(E.Super{}, loc); - }, - else => {}, - } - - p.log.addRangeError(p.source, superRange, "Unexpected \"super\"") catch unreachable; - return p.e(E.Super{}, loc); - }, - .t_open_paren => { - try p.lexer.next(); - - // Arrow functions aren't allowed in the middle of expressions - if (level.gt(.assign)) { - // Allow "in" inside parentheses - const oldAllowIn = p.allow_in; - p.allow_in = true; - - var value = try p.parseExpr(Level.lowest); - p.markExprAsParenthesized(&value); - try p.lexer.expect(.t_close_paren); - p.allow_in = oldAllowIn; - return value; - } - - return p.parseParenExpr(loc, level, ParenExprOpts{}); - }, - .t_false => { - try p.lexer.next(); - return p.e(E.Boolean{ .value = false }, loc); - }, - .t_true => { - try p.lexer.next(); - return p.e(E.Boolean{ .value = true }, loc); - }, - .t_null => { - try p.lexer.next(); - return p.e(E.Null{}, loc); - }, - .t_this => { - try p.lexer.next(); - return Expr{ .data = Prefill.Data.This, .loc = loc }; - }, - .t_private_identifier => { - if (!p.allow_private_identifiers or !p.allow_in) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - - const name = p.lexer.identifier; - try p.lexer.next(); - - // Check for "#foo in bar" - if (p.lexer.token != .t_in) { - try p.lexer.expected(.t_in); - } - - return p.e(E.PrivateIdentifier{ .ref = try p.storeNameInRef(name) }, loc); - }, - .t_identifier => { - const name = p.lexer.identifier; - const name_range = p.lexer.range(); - const raw = p.lexer.raw(); - - try p.lexer.next(); - - // Handle async and await expressions - switch (AsyncPrefixExpression.find(name)) { - .is_async => { - if ((raw.ptr == name.ptr and raw.len == name.len) or AsyncPrefixExpression.find(raw) == .is_async) { - return try p.parseAsyncPrefixExpr(name_range, level); + // Skip over TypeScript type arguments here if there are any + if (p.lexer.token == .t_less_than) { + _ = p.trySkipTypeScriptTypeArgumentsWithBacktracking(); } - }, - - .is_await => { - switch (p.fn_or_arrow_data_parse.allow_await) { - .forbid_all => { - p.log.addRangeError(p.source, name_range, "The keyword \"await\" cannot be used here.") catch unreachable; - }, - .allow_expr => { - if (AsyncPrefixExpression.find(raw) != .is_await) { - p.log.addRangeError(p.source, name_range, "The keyword \"await\" cannot be escaped.") catch unreachable; - } else { - if (p.fn_or_arrow_data_parse.is_top_level) { - p.top_level_await_keyword = name_range; - } + } - if (p.fn_or_arrow_data_parse.track_arrow_arg_errors) { - p.fn_or_arrow_data_parse.arrow_arg_errors.invalid_expr_await = name_range; - } + if (p.lexer.token == .t_open_paren) { + args = try p.parseCallArgs(); + } - const value = try p.parseExpr(.prefix); - if (p.lexer.token == T.t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + return p.e(E.New{ + .target = target, + .args = args, + }, loc); + }, + .t_open_bracket => { + try p.lexer.next(); + var is_single_line = !p.lexer.has_newline_before; + var items = List(Expr).init(p.allocator); + var self_errors = DeferredErrors{}; + var comma_after_spread = logger.Loc{}; - return p.e(E.Await{ .value = value }, loc); - } - }, - else => {}, - } - }, + // Allow "in" inside arrays + const old_allow_in = p.allow_in; + p.allow_in = true; - .is_yield => { - switch (p.fn_or_arrow_data_parse.allow_yield) { - .forbid_all => { - p.log.addRangeError(p.source, name_range, "The keyword \"yield\" cannot be used here") catch unreachable; + while (p.lexer.token != .t_close_bracket) { + switch (p.lexer.token) { + .t_comma => { + items.append(Expr{ .data = Prefill.Data.EMissing, .loc = p.lexer.loc() }) catch unreachable; }, - .allow_expr => { - if (AsyncPrefixExpression.find(raw) != .is_yield) { - p.log.addRangeError(p.source, name_range, "The keyword \"yield\" cannot be escaped") catch unreachable; - } else { - if (level.gt(.assign)) { - p.log.addRangeError(p.source, name_range, "Cannot use a \"yield\" here without parentheses") catch unreachable; - } - - if (p.fn_or_arrow_data_parse.track_arrow_arg_errors) { - p.fn_or_arrow_data_parse.arrow_arg_errors.invalid_expr_yield = name_range; - } + .t_dot_dot_dot => { + // this might be wrong. + errors.array_spread_feature = p.lexer.range(); - return p.parseYieldExpr(loc); - } + const dots_loc = p.lexer.loc(); + try p.lexer.next(); + items.append( + p.e(E.Spread{ .value = try p.parseExprOrBindings(.comma, &self_errors) }, dots_loc), + ) catch unreachable; }, - // .allow_ident => { - - // }, else => { - // Try to gracefully recover if "yield" is used in the wrong place - if (!p.lexer.has_newline_before) { - switch (p.lexer.token) { - .t_null, .t_identifier, .t_false, .t_true, .t_numeric_literal, .t_big_integer_literal, .t_string_literal => { - p.log.addRangeError(p.source, name_range, "Cannot use \"yield\" outside a generator function") catch unreachable; - }, - else => {}, - } - } + items.append( + try p.parseExprOrBindings(.comma, &self_errors), + ) catch unreachable; }, } - }, - .none => {}, - } - - // Handle the start of an arrow expression - if (p.lexer.token == .t_equals_greater_than and level.lte(.assign)) { - const ref = p.storeNameInRef(name) catch unreachable; - var args = p.allocator.alloc(Arg, 1) catch unreachable; - args[0] = Arg{ .binding = p.b(B.Identifier{ - .ref = ref, - }, loc) }; - - _ = p.pushScopeForParsePass(.function_args, loc) catch unreachable; - defer p.popScope(); - // Output.print("HANDLE START ", .{}); - return p.e(p.parseArrowBody(args, p.m(FnOrArrowDataParse{})) catch unreachable, loc); - } - - const ref = p.storeNameInRef(name) catch unreachable; - return p.e(E.Identifier{ - .ref = ref, - }, loc); - }, - .t_string_literal, .t_no_substitution_template_literal => { - return try p.parseStringLiteral(); - }, - .t_template_head => { - var head = p.lexer.toEString(); - - const parts = try p.parseTemplateParts(false); - - // Check if TemplateLiteral is unsupported. We don't care for this product.` - // if () - - return p.e(E.Template{ - .head = head, - .parts = parts, - }, loc); - }, - .t_numeric_literal => { - const value = p.e(E.Number{ .value = p.lexer.number }, loc); - // p.checkForLegacyOctalLiteral() - try p.lexer.next(); - return value; - }, - .t_big_integer_literal => { - const value = p.lexer.identifier; - // markSyntaxFeature bigInt - try p.lexer.next(); - return p.e(E.BigInt{ .value = value }, loc); - }, - .t_slash, .t_slash_equals => { - try p.lexer.scanRegExp(); - const value = p.lexer.raw(); - try p.lexer.next(); - return p.e(E.RegExp{ .value = value }, loc); - }, - .t_void => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - - return p.e(E.Unary{ - .op = .un_void, - .value = value, - }, loc); - }, - .t_typeof => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - - return p.e(E.Unary{ .op = .un_typeof, .value = value }, loc); - }, - .t_delete => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } - // TODO: add error deleting private identifier - // const private = value.data.e_private_identifier; - // if (private) |private| { - // const name = p.loadNameFromRef(private.ref); - // p.log.addRangeError(index.loc, ) - // } - - return p.e(E.Unary{ .op = .un_delete, .value = value }, loc); - }, - .t_plus => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + if (p.lexer.token != .t_comma) { + break; + } - return p.e(E.Unary{ .op = .un_pos, .value = value }, loc); - }, - .t_minus => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + if (p.lexer.has_newline_before) { + is_single_line = false; + } - return p.e(E.Unary{ .op = .un_neg, .value = value }, loc); - }, - .t_tilde => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + try p.lexer.next(); - return p.e(E.Unary{ .op = .un_cpl, .value = value }, loc); - }, - .t_exclamation => { - try p.lexer.next(); - const value = try p.parseExpr(.prefix); - if (p.lexer.token == .t_asterisk_asterisk) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + if (p.lexer.has_newline_before) { + is_single_line = false; + } + } - return p.e(E.Unary{ .op = .un_not, .value = value }, loc); - }, - .t_minus_minus => { - try p.lexer.next(); - return p.e(E.Unary{ .op = .un_pre_dec, .value = try p.parseExpr(.prefix) }, loc); - }, - .t_plus_plus => { - try p.lexer.next(); - return p.e(E.Unary{ .op = .un_pre_inc, .value = try p.parseExpr(.prefix) }, loc); - }, - .t_function => { - return try p.parseFnExpr(loc, false, logger.Range.None); - }, - .t_class => { - const classKeyword = p.lexer.range(); - // markSyntaxFEatuer class - try p.lexer.next(); - var name: ?js_ast.LocRef = null; + if (p.lexer.has_newline_before) { + is_single_line = false; + } - _ = p.pushScopeForParsePass(.class_name, loc) catch unreachable; + try p.lexer.expect(.t_close_bracket); + p.allow_in = old_allow_in; - // Parse an optional class name - if (p.lexer.token == .t_identifier and !js_lexer.StrictModeReservedWords.has(p.lexer.identifier)) { - name = js_ast.LocRef{ .loc = p.lexer.loc(), .ref = p.newSymbol(.other, p.lexer.identifier) catch unreachable }; + // Is this a binding pattern? + if (p.willNeedBindingPattern()) { + // noop + } else if (errors.is_disabled) { + // Is this an expression? + p.logExprErrors(&self_errors); + } else { + // In this case, we can't distinguish between the two yet + self_errors.mergeInto(errors); + } + return p.e(E.Array{ + .items = items.toOwnedSlice(), + .comma_after_spread = comma_after_spread.toNullable(), + .is_single_line = is_single_line, + }, loc); + }, + .t_open_brace => { try p.lexer.next(); - } + var is_single_line = !p.lexer.has_newline_before; + var properties = List(G.Property).init(p.allocator); + var self_errors = DeferredErrors{}; + var comma_after_spread = logger.Loc{}; - // Even anonymous classes can have TypeScript type parameters - if (p.options.ts) { - try p.skipTypeScriptTypeParameters(); - } - - const class = try p.parseClass(classKeyword, name, ParseClassOptions{}); - p.popScope(); + // Allow "in" inside object literals + const old_allow_in = p.allow_in; + p.allow_in = true; - return p.e(class, loc); - }, - .t_new => { - try p.lexer.next(); + while (p.lexer.token != .t_close_brace) { + if (p.lexer.token == .t_dot_dot_dot) { + try p.lexer.next(); + properties.append(G.Property{ .kind = .spread, .value = try p.parseExpr(.comma) }) catch unreachable; - // Special-case the weird "new.target" expression here - if (p.lexer.token == .t_dot) { - try p.lexer.next(); - if (p.lexer.token != .t_identifier or !strings.eqlComptime(p.lexer.raw(), "target")) { - try p.lexer.unexpected(); - return error.SyntaxError; - } + // Commas are not allowed here when destructuring + if (p.lexer.token == .t_comma) { + comma_after_spread = p.lexer.loc(); + } + } else { + // This property may turn out to be a type in TypeScript, which should be ignored + var propertyOpts = PropertyOpts{}; + if (try p.parseProperty(.normal, &propertyOpts, &self_errors)) |prop| { + properties.append(prop) catch unreachable; + } + } - const r = logger.Range{ .loc = loc, .len = p.lexer.range().end().start - loc.start }; - try p.lexer.next(); - return p.e(E.NewTarget{}, loc); - } + if (p.lexer.token != .t_comma) { + break; + } - const target = try p.parseExprWithFlags(.member, flags); - var args: []Expr = &([_]Expr{}); + if (p.lexer.has_newline_before) { + is_single_line = false; + } - if (p.options.ts) { - // Skip over TypeScript non-null assertions - if (p.lexer.token == .t_exclamation and !p.lexer.has_newline_before) { try p.lexer.next(); - } - // Skip over TypeScript type arguments here if there are any - if (p.lexer.token == .t_less_than) { - _ = p.trySkipTypeScriptTypeArgumentsWithBacktracking(); + if (p.lexer.has_newline_before) { + is_single_line = false; + } } - } - if (p.lexer.token == .t_open_paren) { - args = try p.parseCallArgs(); - } + if (p.lexer.has_newline_before) { + is_single_line = false; + } - return p.e(E.New{ - .target = target, - .args = args, - }, loc); - }, - .t_open_bracket => { - try p.lexer.next(); - var is_single_line = !p.lexer.has_newline_before; - var items = List(Expr).init(p.allocator); - var self_errors = DeferredErrors{}; - var comma_after_spread = logger.Loc{}; + try p.lexer.expect(.t_close_brace); + p.allow_in = old_allow_in; - // Allow "in" inside arrays - const old_allow_in = p.allow_in; - p.allow_in = true; + if (p.willNeedBindingPattern()) {} else if (!errors.is_disabled) { + // Is this an expression? + p.logExprErrors(&self_errors); + } else { + // In this case, we can't distinguish between the two yet + self_errors.mergeInto(errors); + } + return p.e(E.Object{ + .properties = properties.toOwnedSlice(), + .comma_after_spread = comma_after_spread.toNullable(), + .is_single_line = is_single_line, + }, loc); + }, + .t_less_than => { + // This is a very complicated and highly ambiguous area of TypeScript + // syntax. Many similar-looking things are overloaded. + // + // TS: + // + // A type cast: + // <A>(x) + // <[]>(x) + // <A[]>(x) + // + // An arrow function with type parameters: + // <A>(x) => {} + // <A, B>(x) => {} + // <A = B>(x) => {} + // <A extends B>(x) => {} + // + // TSX: + // + // A JSX element: + // <A>(x) => {}</A> + // <A extends>(x) => {}</A> + // <A extends={false}>(x) => {}</A> + // + // An arrow function with type parameters: + // <A, B>(x) => {} + // <A extends B>(x) => {} + // + // A syntax error: + // <[]>(x) + // <A[]>(x) + // <A>(x) => {} + // <A = B>(x) => {} + if (is_typescript_enabled and is_jsx_enabled) { + var oldLexer = std.mem.toBytes(p.lexer); - while (p.lexer.token != .t_close_bracket) { - switch (p.lexer.token) { - .t_comma => { - items.append(Expr{ .data = Prefill.Data.EMissing, .loc = p.lexer.loc() }) catch unreachable; - }, - .t_dot_dot_dot => { - // this might be wrong. - errors.array_spread_feature = p.lexer.range(); + try p.lexer.next(); + // Look ahead to see if this should be an arrow function instead + var is_ts_arrow_fn = false; - const dots_loc = p.lexer.loc(); + if (p.lexer.token == .t_identifier) { try p.lexer.next(); - items.append( - p.e(E.Spread{ .value = try p.parseExprOrBindings(.comma, &self_errors) }, dots_loc), - ) catch unreachable; - }, - else => { - items.append( - try p.parseExprOrBindings(.comma, &self_errors), - ) catch unreachable; - }, - } + if (p.lexer.token == .t_comma) { + is_ts_arrow_fn = true; + } else if (p.lexer.token == .t_extends) { + try p.lexer.next(); + is_ts_arrow_fn = p.lexer.token != .t_equals and p.lexer.token != .t_greater_than; + } + } - if (p.lexer.token != .t_comma) { - break; - } + // Restore the lexer + p.lexer = std.mem.bytesToValue(@TypeOf(p.lexer), &oldLexer); - if (p.lexer.has_newline_before) { - is_single_line = false; + if (is_ts_arrow_fn) { + try p.skipTypeScriptTypeParameters(); + try p.lexer.expect(.t_open_paren); + return p.parseParenExpr(loc, level, ParenExprOpts{ .force_arrow_fn = true }) catch unreachable; + } } - try p.lexer.next(); + if (is_jsx_enabled) { + // Use NextInsideJSXElement() instead of Next() so we parse "<<" as "<" + try p.lexer.nextInsideJSXElement(); + const element = p.parseJSXElement(loc) catch unreachable; - if (p.lexer.has_newline_before) { - is_single_line = false; + // The call to parseJSXElement() above doesn't consume the last + // TGreaterThan because the caller knows what Next() function to call. + // Use Next() instead of NextInsideJSXElement() here since the next + // token is an expression. + try p.lexer.next(); + return element; } - } - - if (p.lexer.has_newline_before) { - is_single_line = false; - } - try p.lexer.expect(.t_close_bracket); - p.allow_in = old_allow_in; + if (is_typescript_enabled) { + // This is either an old-style type cast or a generic lambda function - // Is this a binding pattern? - if (p.willNeedBindingPattern()) { - // noop - } else if (errors.is_disabled) { - // Is this an expression? - p.logExprErrors(&self_errors); - } else { - // In this case, we can't distinguish between the two yet - self_errors.mergeInto(errors); - } - return p.e(E.Array{ - .items = items.toOwnedSlice(), - .comma_after_spread = comma_after_spread.toNullable(), - .is_single_line = is_single_line, - }, loc); - }, - .t_open_brace => { - try p.lexer.next(); - var is_single_line = !p.lexer.has_newline_before; - var properties = List(G.Property).init(p.allocator); - var self_errors = DeferredErrors{}; - var comma_after_spread = logger.Loc{}; - - // Allow "in" inside object literals - const old_allow_in = p.allow_in; - p.allow_in = true; + // "<T>(x)" + // "<T>(x) => {}" + if (p.trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking()) { + try p.lexer.expect(.t_open_paren); + return p.parseParenExpr(loc, level, ParenExprOpts{}) catch unreachable; + } - while (p.lexer.token != .t_close_brace) { - if (p.lexer.token == .t_dot_dot_dot) { + // "<T>x" try p.lexer.next(); - properties.append(G.Property{ .kind = .spread, .value = try p.parseExpr(.comma) }) catch unreachable; - - // Commas are not allowed here when destructuring - if (p.lexer.token == .t_comma) { - comma_after_spread = p.lexer.loc(); - } - } else { - // This property may turn out to be a type in TypeScript, which should be ignored - var propertyOpts = PropertyOpts{}; - if (try p.parseProperty(.normal, &propertyOpts, &self_errors)) |prop| { - properties.append(prop) catch unreachable; - } + try p.skipTypeScriptType(.lowest); + try p.lexer.expectGreaterThan(false); + return p.parsePrefix(level, errors, flags); } - if (p.lexer.token != .t_comma) { - break; - } + try p.lexer.unexpected(); + return error.SyntaxError; + }, + .t_import => { + try p.lexer.next(); + return p.parseImportExpr(loc, level); + }, + else => { + try p.lexer.unexpected(); + return error.SyntaxError; + }, + } + return error.SyntaxError; + } - if (p.lexer.has_newline_before) { - is_single_line = false; - } + // esbuild's version of this function is much more complicated. + // I'm not sure why defines is strictly relevant for this case + // and I imagine all the allocations cause some performance + // guessing it's concurrency-related + pub fn jsxStringsToMemberExpression(p: *P, loc: logger.Loc, ref: Ref) Expr { + p.recordUsage(ref); + return p.e(E.Identifier{ .ref = ref }, loc); + } + // Note: The caller has already parsed the "import" keyword + pub fn parseImportExpr(p: *P, loc: logger.Loc, level: Level) anyerror!Expr { + // Parse an "import.meta" expression + if (p.lexer.token == .t_dot) { + p.es6_import_keyword = js_lexer.rangeOfIdentifier(p.source, loc); + try p.lexer.next(); + if (p.lexer.isContextualKeyword("meta")) { + const r = p.lexer.range(); try p.lexer.next(); - - if (p.lexer.has_newline_before) { - is_single_line = false; - } + p.has_import_meta = true; + return p.e(E.ImportMeta{}, loc); + } else { + try p.lexer.expectedString("\"meta\""); } + } - if (p.lexer.has_newline_before) { - is_single_line = false; - } + if (level.gt(.call)) { + const r = js_lexer.rangeOfIdentifier(p.source, loc); + p.log.addRangeError(p.source, r, "Cannot use an \"import\" expression here without parentheses") catch unreachable; + } + // allow "in" inside call arguments; + var old_allow_in = p.allow_in; + p.allow_in = true; - try p.lexer.expect(.t_close_brace); - p.allow_in = old_allow_in; + p.lexer.preserve_all_comments_before = true; + try p.lexer.expect(.t_open_paren); + const comments = p.lexer.comments_to_preserve_before.toOwnedSlice(); + p.lexer.preserve_all_comments_before = false; - if (p.willNeedBindingPattern()) {} else if (!errors.is_disabled) { - // Is this an expression? - p.logExprErrors(&self_errors); - } else { - // In this case, we can't distinguish between the two yet - self_errors.mergeInto(errors); - } - return p.e(E.Object{ - .properties = properties.toOwnedSlice(), - .comma_after_spread = comma_after_spread.toNullable(), - .is_single_line = is_single_line, - }, loc); - }, - .t_less_than => { - // This is a very complicated and highly ambiguous area of TypeScript - // syntax. Many similar-looking things are overloaded. - // - // TS: - // - // A type cast: - // <A>(x) - // <[]>(x) - // <A[]>(x) - // - // An arrow function with type parameters: - // <A>(x) => {} - // <A, B>(x) => {} - // <A = B>(x) => {} - // <A extends B>(x) => {} - // - // TSX: - // - // A JSX element: - // <A>(x) => {}</A> - // <A extends>(x) => {}</A> - // <A extends={false}>(x) => {}</A> - // - // An arrow function with type parameters: - // <A, B>(x) => {} - // <A extends B>(x) => {} - // - // A syntax error: - // <[]>(x) - // <A[]>(x) - // <A>(x) => {} - // <A = B>(x) => {} - if (p.options.ts and p.options.jsx.parse) { - var oldLexer = std.mem.toBytes(p.lexer); + const value = try p.parseExpr(.comma); + try p.lexer.expect(.t_close_paren); - try p.lexer.next(); - // Look ahead to see if this should be an arrow function instead - var is_ts_arrow_fn = false; + p.allow_in = old_allow_in; + return p.e(E.Import{ .expr = value, .leading_interior_comments = comments, .import_record_index = 0 }, loc); + } - if (p.lexer.token == .t_identifier) { - try p.lexer.next(); - if (p.lexer.token == .t_comma) { - is_ts_arrow_fn = true; - } else if (p.lexer.token == .t_extends) { - try p.lexer.next(); - is_ts_arrow_fn = p.lexer.token != .t_equals and p.lexer.token != .t_greater_than; - } + const JSXTag = struct { + pub const TagType = enum { fragment, tag }; + pub const Data = union(TagType) { + fragment: u1, + tag: Expr, + + pub fn asExpr(d: *const Data) ?ExprNodeIndex { + switch (d.*) { + .tag => |tag| { + return tag; + }, + else => { + return null; + }, } + } + }; + data: Data, + range: logger.Range, + name: string = "", - // Restore the lexer - p.lexer = std.mem.bytesToValue(@TypeOf(p.lexer), &oldLexer); + pub fn parse(p: *P) !JSXTag { + const loc = p.lexer.loc(); - if (is_ts_arrow_fn) { - try p.skipTypeScriptTypeParameters(); - try p.lexer.expect(.t_open_paren); - return p.parseParenExpr(loc, level, ParenExprOpts{ .force_arrow_fn = true }) catch unreachable; - } + // A missing tag is a fragment + if (p.lexer.token == .t_greater_than) { + return JSXTag{ + .range = logger.Range{ .loc = loc, .len = 0 }, + .data = Data{ .fragment = 1 }, + }; } - if (p.options.jsx.parse) { - // Use NextInsideJSXElement() instead of Next() so we parse "<<" as "<" - try p.lexer.nextInsideJSXElement(); - const element = p.parseJSXElement(loc) catch unreachable; + // The tag is an identifier + var name = p.lexer.identifier; + var tag_range = p.lexer.range(); + try p.lexer.expectInsideJSXElement(.t_identifier); - // The call to parseJSXElement() above doesn't consume the last - // TGreaterThan because the caller knows what Next() function to call. - // Use Next() instead of NextInsideJSXElement() here since the next - // token is an expression. - try p.lexer.next(); - return element; + // Certain identifiers are strings + // <div + // <button + // <Hello-:Button + if (strings.contains(name, "-:") or (p.lexer.token != .t_dot and name[0] >= 'a' and name[0] <= 'z')) { + return JSXTag{ + .data = Data{ .tag = p.e(E.String{ + .utf8 = name, + }, loc) }, + .range = tag_range, + }; } - if (p.options.ts) { - // This is either an old-style type cast or a generic lambda function + // Otherwise, this is an identifier + // <Button> + var tag = p.e(E.Identifier{ .ref = try p.storeNameInRef(name) }, loc); - // "<T>(x)" - // "<T>(x) => {}" - if (p.trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking()) { - try p.lexer.expect(.t_open_paren); - return p.parseParenExpr(loc, level, ParenExprOpts{}) catch unreachable; + // Parse a member expression chain + // <Button.Red> + while (p.lexer.token == .t_dot) { + try p.lexer.nextInsideJSXElement(); + const member_range = p.lexer.range(); + const member = p.lexer.identifier; + try p.lexer.expectInsideJSXElement(.t_identifier); + + if (strings.indexOfChar(member, '-')) |index| { + try p.log.addError(p.source, logger.Loc{ .start = member_range.loc.start + @intCast(i32, index) }, "Unexpected \"-\""); + p.panic("", .{}); } - // "<T>x" - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - try p.lexer.expectGreaterThan(false); - return p.parsePrefix(level, errors, flags); + var _name = try p.allocator.alloc(u8, name.len + 1 + member.len); + std.mem.copy(u8, _name, name); + _name[name.len] = '.'; + std.mem.copy(u8, _name[name.len + 1 .. _name.len], member); + name = _name; + tag_range.len = member_range.loc.start + member_range.len - tag_range.loc.start; + tag = p.e(E.Dot{ .target = tag, .name = member, .name_loc = member_range.loc }, loc); } - try p.lexer.unexpected(); - return error.SyntaxError; - }, - .t_import => { - try p.lexer.next(); - return p.parseImportExpr(loc, level); - }, - else => { - try p.lexer.unexpected(); - return error.SyntaxError; - }, - } - return error.SyntaxError; - } + return JSXTag{ .data = Data{ .tag = tag }, .range = tag_range, .name = name }; + } + }; - // esbuild's version of this function is much more complicated. - // I'm not sure why defines is strictly relevant for this case - // and I imagine all the allocations cause some performance - // guessing it's concurrency-related - pub fn jsxStringsToMemberExpression(p: *P, loc: logger.Loc, ref: Ref) Expr { - p.recordUsage(ref); - return p.e(E.Identifier{ .ref = ref }, loc); - } + pub fn parseJSXPropValueIdentifier(p: *P, previous_string_with_backslash_loc: *logger.Loc) !Expr { + // Use NextInsideJSXElement() not Next() so we can parse a JSX-style string literal + try p.lexer.nextInsideJSXElement(); + if (p.lexer.token == .t_string_literal) { + previous_string_with_backslash_loc.start = std.math.max(p.lexer.loc().start, p.lexer.previous_backslash_quote_in_jsx.loc.start); + const expr = p.e(p.lexer.toEString(), previous_string_with_backslash_loc.*); - // Note: The caller has already parsed the "import" keyword - pub fn parseImportExpr(p: *P, loc: logger.Loc, level: Level) anyerror!Expr { - // Parse an "import.meta" expression - if (p.lexer.token == .t_dot) { - p.es6_import_keyword = js_lexer.rangeOfIdentifier(p.source, loc); - try p.lexer.next(); - if (p.lexer.isContextualKeyword("meta")) { - const r = p.lexer.range(); - try p.lexer.next(); - p.has_import_meta = true; - return p.e(E.ImportMeta{}, loc); + try p.lexer.nextInsideJSXElement(); + return expr; } else { - try p.lexer.expectedString("\"meta\""); + // Use Expect() not ExpectInsideJSXElement() so we can parse expression tokens + try p.lexer.expect(.t_open_brace); + const value = try p.parseExpr(.lowest); + try p.lexer.expectInsideJSXElement(.t_close_brace); + return value; } } - if (level.gt(.call)) { - const r = js_lexer.rangeOfIdentifier(p.source, loc); - p.log.addRangeError(p.source, r, "Cannot use an \"import\" expression here without parentheses") catch unreachable; - } - // allow "in" inside call arguments; - var old_allow_in = p.allow_in; - p.allow_in = true; + pub fn parseJSXElement(p: *P, loc: logger.Loc) !Expr { + var tag = try JSXTag.parse(p); - p.lexer.preserve_all_comments_before = true; - try p.lexer.expect(.t_open_paren); - const comments = p.lexer.comments_to_preserve_before.toOwnedSlice(); - p.lexer.preserve_all_comments_before = false; + // The tag may have TypeScript type arguments: "<Foo<T>/>" + if (is_typescript_enabled) { + // Pass a flag to the type argument skipper because we need to call + _ = try p.skipTypeScriptTypeArguments(true); + } - const value = try p.parseExpr(.comma); - try p.lexer.expect(.t_close_paren); + var previous_string_with_backslash_loc = logger.Loc{}; + var properties: []G.Property = &([_]G.Property{}); + var key_prop: ?ExprNodeIndex = null; + var flags = Flags.JSXElement{}; + var start_tag: ?ExprNodeIndex = null; - p.allow_in = old_allow_in; - return p.e(E.Import{ .expr = value, .leading_interior_comments = comments, .import_record_index = 0 }, loc); - } + // Fragments don't have props + // Fragments of the form "React.Fragment" are not parsed as fragments. + if (@as(JSXTag.TagType, tag.data) == .tag) { + start_tag = tag.data.tag; + var spread_loc: logger.Loc = logger.Loc.Empty; + var props = List(G.Property).init(p.allocator); + var key_prop_i: i32 = -1; + var spread_prop_i: i32 = -1; + var i: i32 = 0; + parse_attributes: while (true) { + switch (p.lexer.token) { + .t_identifier => { + defer i += 1; + // Parse the prop name + var key_range = p.lexer.range(); + const prop_name_literal = p.lexer.identifier; + const special_prop = E.JSXElement.SpecialProp.Map.get(prop_name_literal) orelse E.JSXElement.SpecialProp.any; + try p.lexer.nextInsideJSXElement(); + + if (special_prop == .key) { + + // <ListItem key> + if (p.lexer.token != .t_equals) { + // Unlike Babel, we're going to just warn here and move on. + try p.log.addWarning(p.source, key_range.loc, "\"key\" prop ignored. Must be a string, number or symbol."); + continue; + } - const JSXTag = struct { - pub const TagType = enum { fragment, tag }; - pub const Data = union(TagType) { - fragment: u1, - tag: Expr, + key_prop_i = i; + key_prop = try p.parseJSXPropValueIdentifier(&previous_string_with_backslash_loc); + continue; + } - pub fn asExpr(d: *const Data) ?ExprNodeIndex { - switch (d.*) { - .tag => |tag| { - return tag; - }, - else => { - return null; - }, - } - } - }; - data: Data, - range: logger.Range, - name: string = "", + var prop_name = p.e(E.String{ .utf8 = prop_name_literal }, key_range.loc); - pub fn parse(p: *P) !JSXTag { - const loc = p.lexer.loc(); + // Parse the value + var value: Expr = undefined; + if (p.lexer.token != .t_equals) { - // A missing tag is a fragment - if (p.lexer.token == .t_greater_than) { - return JSXTag{ - .range = logger.Range{ .loc = loc, .len = 0 }, - .data = Data{ .fragment = 1 }, - }; - } + // Implicitly true value + // <button selected> + value = p.e(E.Boolean{ .value = true }, logger.Loc{ .start = key_range.loc.start + key_range.len }); + } else { + value = try p.parseJSXPropValueIdentifier(&previous_string_with_backslash_loc); + } - // The tag is an identifier - var name = p.lexer.identifier; - var tag_range = p.lexer.range(); - try p.lexer.expectInsideJSXElement(.t_identifier); - - // Certain identifiers are strings - // <div - // <button - // <Hello-:Button - if (strings.contains(name, "-:") or (p.lexer.token != .t_dot and name[0] >= 'a' and name[0] <= 'z')) { - return JSXTag{ - .data = Data{ .tag = p.e(E.String{ - .utf8 = name, - }, loc) }, - .range = tag_range, - }; + try props.append(G.Property{ .key = prop_name, .value = value }); + }, + .t_open_brace => { + defer i += 1; + // Use Next() not ExpectInsideJSXElement() so we can parse "..." + try p.lexer.next(); + try p.lexer.expect(.t_dot_dot_dot); + spread_prop_i = i; + spread_loc = p.lexer.loc(); + try props.append(G.Property{ .value = try p.parseExpr(.comma), .kind = .spread }); + try p.lexer.nextInsideJSXElement(); + }, + else => { + break :parse_attributes; + }, + } + } + + flags.is_key_before_rest = key_prop_i > -1 and spread_prop_i > key_prop_i; + if (flags.is_key_before_rest and p.options.jsx.runtime == .automatic and !p.has_classic_runtime_warned) { + try p.log.addWarning(p.source, spread_loc, "\"key\" prop before a {...spread} is deprecated in JSX. Falling back to classic runtime."); + p.has_classic_runtime_warned = true; + } + properties = props.toOwnedSlice(); } - // Otherwise, this is an identifier - // <Button> - var tag = p.e(E.Identifier{ .ref = try p.storeNameInRef(name) }, loc); + // People sometimes try to use the output of "JSON.stringify()" as a JSX + // attribute when automatically-generating JSX code. Doing so is incorrect + // because JSX strings work like XML instead of like JS (since JSX is XML-in- + // JS). Specifically, using a backslash before a quote does not cause it to + // be escaped: + // + // JSX ends the "content" attribute here and sets "content" to 'some so-called \\' + // v + // <Button content="some so-called \"button text\"" /> + // ^ + // There is no "=" after the JSX attribute "text", so we expect a ">" + // + // This code special-cases this error to provide a less obscure error message. + if (p.lexer.token == .t_syntax_error and strings.eqlComptime(p.lexer.raw(), "\\") and previous_string_with_backslash_loc.start > 0) { + const r = p.lexer.range(); + // Not dealing with this right now. + try p.log.addRangeError(p.source, r, "Invalid JSX escape - use XML entity codes quotes or pass a JavaScript string instead"); + p.panic("", .{}); + } - // Parse a member expression chain - // <Button.Red> - while (p.lexer.token == .t_dot) { + // A slash here is a self-closing element + if (p.lexer.token == .t_slash) { + // Use NextInsideJSXElement() not Next() so we can parse ">>" as ">" try p.lexer.nextInsideJSXElement(); - const member_range = p.lexer.range(); - const member = p.lexer.identifier; - try p.lexer.expectInsideJSXElement(.t_identifier); - - if (strings.indexOfChar(member, '-')) |index| { - try p.log.addError(p.source, logger.Loc{ .start = member_range.loc.start + @intCast(i32, index) }, "Unexpected \"-\""); - p.panic("", .{}); + if (p.lexer.token != .t_greater_than) { + try p.lexer.expected(.t_greater_than); } - var _name = try p.allocator.alloc(u8, name.len + 1 + member.len); - std.mem.copy(u8, _name, name); - _name[name.len] = '.'; - std.mem.copy(u8, _name[name.len + 1 .. _name.len], member); - name = _name; - tag_range.len = member_range.loc.start + member_range.len - tag_range.loc.start; - tag = p.e(E.Dot{ .target = tag, .name = member, .name_loc = member_range.loc }, loc); + return p.e(E.JSXElement{ + .tag = start_tag, + .properties = properties, + .key = key_prop, + .flags = flags, + }, loc); } - return JSXTag{ .data = Data{ .tag = tag }, .range = tag_range, .name = name }; - } - }; + // Use ExpectJSXElementChild() so we parse child strings + try p.lexer.expectJSXElementChild(.t_greater_than); + var children = List(Expr).init(p.allocator); - pub fn parseJSXPropValueIdentifier(p: *P, previous_string_with_backslash_loc: *logger.Loc) !Expr { - // Use NextInsideJSXElement() not Next() so we can parse a JSX-style string literal - try p.lexer.nextInsideJSXElement(); - if (p.lexer.token == .t_string_literal) { - previous_string_with_backslash_loc.start = std.math.max(p.lexer.loc().start, p.lexer.previous_backslash_quote_in_jsx.loc.start); - const expr = p.e(p.lexer.toEString(), previous_string_with_backslash_loc.*); + while (true) { + switch (p.lexer.token) { + .t_string_literal => { + try children.append(p.e(p.lexer.toEString(), loc)); + try p.lexer.nextJSXElementChild(); + }, + .t_open_brace => { + // Use Next() instead of NextJSXElementChild() here since the next token is an expression + try p.lexer.next(); - try p.lexer.nextInsideJSXElement(); - return expr; - } else { - // Use Expect() not ExpectInsideJSXElement() so we can parse expression tokens - try p.lexer.expect(.t_open_brace); - const value = try p.parseExpr(.lowest); - try p.lexer.expectInsideJSXElement(.t_close_brace); - return value; - } - } + // The "..." here is ignored (it's used to signal an array type in TypeScript) + if (p.lexer.token == .t_dot_dot_dot and is_typescript_enabled) { + try p.lexer.next(); + } - pub fn parseJSXElement(p: *P, loc: logger.Loc) !Expr { - var tag = try JSXTag.parse(p); - - // The tag may have TypeScript type arguments: "<Foo<T>/>" - if (p.options.ts) { - // Pass a flag to the type argument skipper because we need to call - _ = try p.skipTypeScriptTypeArguments(true); - } - - var previous_string_with_backslash_loc = logger.Loc{}; - var properties: []G.Property = &([_]G.Property{}); - var key_prop: ?ExprNodeIndex = null; - var flags = Flags.JSXElement{}; - var start_tag: ?ExprNodeIndex = null; - - // Fragments don't have props - // Fragments of the form "React.Fragment" are not parsed as fragments. - if (@as(JSXTag.TagType, tag.data) == .tag) { - start_tag = tag.data.tag; - var spread_loc: logger.Loc = logger.Loc.Empty; - var props = List(G.Property).init(p.allocator); - var key_prop_i: i32 = -1; - var spread_prop_i: i32 = -1; - var i: i32 = 0; - parse_attributes: while (true) { - switch (p.lexer.token) { - .t_identifier => { - defer i += 1; - // Parse the prop name - var key_range = p.lexer.range(); - const prop_name_literal = p.lexer.identifier; - const special_prop = E.JSXElement.SpecialProp.Map.get(prop_name_literal) orelse E.JSXElement.SpecialProp.any; + // The expression is optional, and may be absent + if (p.lexer.token != .t_close_brace) { + try children.append(try p.parseExpr(.lowest)); + } + + // Use ExpectJSXElementChild() so we parse child strings + try p.lexer.expectJSXElementChild(.t_close_brace); + }, + .t_less_than => { + const less_than_loc = p.lexer.loc(); try p.lexer.nextInsideJSXElement(); - if (special_prop == .key) { + if (p.lexer.token != .t_slash) { + // This is a child element + children.append(p.parseJSXElement(less_than_loc) catch unreachable) catch unreachable; - // <ListItem key> - if (p.lexer.token != .t_equals) { - // Unlike Babel, we're going to just warn here and move on. - try p.log.addWarning(p.source, key_range.loc, "\"key\" prop ignored. Must be a string, number or symbol."); - continue; - } - - key_prop_i = i; - key_prop = try p.parseJSXPropValueIdentifier(&previous_string_with_backslash_loc); + // The call to parseJSXElement() above doesn't consume the last + // TGreaterThan because the caller knows what Next() function to call. + // Use NextJSXElementChild() here since the next token is an element + // child. + try p.lexer.nextJSXElementChild(); continue; } - var prop_name = p.e(E.String{ .utf8 = prop_name_literal }, key_range.loc); - - // Parse the value - var value: Expr = undefined; - if (p.lexer.token != .t_equals) { + // This is the closing element + try p.lexer.nextInsideJSXElement(); + const end_tag = try JSXTag.parse(p); + if (!strings.eql(end_tag.name, tag.name)) { + try p.log.addRangeErrorFmt(p.source, end_tag.range, p.allocator, "Expected closing tag </{s}> to match opening tag <{s}>", .{ + tag.name, + end_tag.name, + }); + p.panic("", .{}); + } - // Implicitly true value - // <button selected> - value = p.e(E.Boolean{ .value = true }, logger.Loc{ .start = key_range.loc.start + key_range.len }); - } else { - value = try p.parseJSXPropValueIdentifier(&previous_string_with_backslash_loc); + if (p.lexer.token != .t_greater_than) { + try p.lexer.expected(.t_greater_than); } - try props.append(G.Property{ .key = prop_name, .value = value }); - }, - .t_open_brace => { - defer i += 1; - // Use Next() not ExpectInsideJSXElement() so we can parse "..." - try p.lexer.next(); - try p.lexer.expect(.t_dot_dot_dot); - spread_prop_i = i; - spread_loc = p.lexer.loc(); - try props.append(G.Property{ .value = try p.parseExpr(.comma), .kind = .spread }); - try p.lexer.nextInsideJSXElement(); + return p.e(E.JSXElement{ + .tag = end_tag.data.asExpr(), + .children = children.toOwnedSlice(), + .properties = properties, + .key = key_prop, + .flags = flags, + }, loc); }, else => { - break :parse_attributes; + try p.lexer.unexpected(); + return error.SyntaxError; }, } } - - flags.is_key_before_rest = key_prop_i > -1 and spread_prop_i > key_prop_i; - if (flags.is_key_before_rest and p.options.jsx.runtime == .automatic and !p.has_classic_runtime_warned) { - try p.log.addWarning(p.source, spread_loc, "\"key\" prop before a {...spread} is deprecated in JSX. Falling back to classic runtime."); - p.has_classic_runtime_warned = true; - } - properties = props.toOwnedSlice(); - } - - // People sometimes try to use the output of "JSON.stringify()" as a JSX - // attribute when automatically-generating JSX code. Doing so is incorrect - // because JSX strings work like XML instead of like JS (since JSX is XML-in- - // JS). Specifically, using a backslash before a quote does not cause it to - // be escaped: - // - // JSX ends the "content" attribute here and sets "content" to 'some so-called \\' - // v - // <Button content="some so-called \"button text\"" /> - // ^ - // There is no "=" after the JSX attribute "text", so we expect a ">" - // - // This code special-cases this error to provide a less obscure error message. - if (p.lexer.token == .t_syntax_error and strings.eqlComptime(p.lexer.raw(), "\\") and previous_string_with_backslash_loc.start > 0) { - const r = p.lexer.range(); - // Not dealing with this right now. - try p.log.addRangeError(p.source, r, "Invalid JSX escape - use XML entity codes quotes or pass a JavaScript string instead"); - p.panic("", .{}); - } - - // A slash here is a self-closing element - if (p.lexer.token == .t_slash) { - // Use NextInsideJSXElement() not Next() so we can parse ">>" as ">" - try p.lexer.nextInsideJSXElement(); - if (p.lexer.token != .t_greater_than) { - try p.lexer.expected(.t_greater_than); - } - - return p.e(E.JSXElement{ - .tag = start_tag, - .properties = properties, - .key = key_prop, - .flags = flags, - }, loc); } - // Use ExpectJSXElementChild() so we parse child strings - try p.lexer.expectJSXElementChild(.t_greater_than); - var children = List(Expr).init(p.allocator); - - while (true) { + pub fn willNeedBindingPattern(p: *P) bool { switch (p.lexer.token) { - .t_string_literal => { - try children.append(p.e(p.lexer.toEString(), loc)); - try p.lexer.nextJSXElementChild(); + .t_equals => { + // "[a] = b;" + return true; }, - .t_open_brace => { - // Use Next() instead of NextJSXElementChild() here since the next token is an expression - try p.lexer.next(); - - // The "..." here is ignored (it's used to signal an array type in TypeScript) - if (p.lexer.token == .t_dot_dot_dot and p.options.ts) { - try p.lexer.next(); - } - - // The expression is optional, and may be absent - if (p.lexer.token != .t_close_brace) { - try children.append(try p.parseExpr(.lowest)); - } - - // Use ExpectJSXElementChild() so we parse child strings - try p.lexer.expectJSXElementChild(.t_close_brace); + .t_in => { + // "for ([a] in b) {}" + return !p.allow_in; }, - .t_less_than => { - const less_than_loc = p.lexer.loc(); - try p.lexer.nextInsideJSXElement(); - - if (p.lexer.token != .t_slash) { - // This is a child element - children.append(p.parseJSXElement(less_than_loc) catch unreachable) catch unreachable; - - // The call to parseJSXElement() above doesn't consume the last - // TGreaterThan because the caller knows what Next() function to call. - // Use NextJSXElementChild() here since the next token is an element - // child. - try p.lexer.nextJSXElementChild(); - continue; - } - - // This is the closing element - try p.lexer.nextInsideJSXElement(); - const end_tag = try JSXTag.parse(p); - if (!strings.eql(end_tag.name, tag.name)) { - try p.log.addRangeErrorFmt(p.source, end_tag.range, p.allocator, "Expected closing tag </{s}> to match opening tag <{s}>", .{ - tag.name, - end_tag.name, - }); - p.panic("", .{}); - } - - if (p.lexer.token != .t_greater_than) { - try p.lexer.expected(.t_greater_than); - } - - return p.e(E.JSXElement{ - .tag = end_tag.data.asExpr(), - .children = children.toOwnedSlice(), - .properties = properties, - .key = key_prop, - .flags = flags, - }, loc); + .t_identifier => { + // "for ([a] of b) {}" + return p.allow_in and p.lexer.isContextualKeyword("of"); }, else => { - try p.lexer.unexpected(); - return error.SyntaxError; + return false; }, } } - } - pub fn willNeedBindingPattern(p: *P) bool { - switch (p.lexer.token) { - .t_equals => { - // "[a] = b;" - return true; - }, - .t_in => { - // "for ([a] in b) {}" - return !p.allow_in; - }, - .t_identifier => { - // "for ([a] of b) {}" - return p.allow_in and p.lexer.isContextualKeyword("of"); - }, - else => { - return false; - }, + pub fn parsePrefix(p: *P, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { + return try p._parsePrefix(level, errors orelse &DeferredErrors.None, flags); } - } - pub fn parsePrefix(p: *P, level: Level, errors: ?*DeferredErrors, flags: Expr.EFlags) anyerror!Expr { - return try p._parsePrefix(level, errors orelse &DeferredErrors.None, flags); - } + pub fn appendPart(p: *P, parts: *List(js_ast.Part), stmts: []Stmt) !void { + p.symbol_uses = SymbolUseMap.init(p.allocator); + p.declared_symbols.deinit(); + p.declared_symbols = @TypeOf(p.declared_symbols).init(p.allocator); + p.import_records_for_current_part.deinit(); + p.import_records_for_current_part = @TypeOf(p.import_records_for_current_part).init(p.allocator); + p.scopes_for_current_part.deinit(); + p.scopes_for_current_part = @TypeOf(p.scopes_for_current_part).init(p.allocator); + var opts = PrependTempRefsOpts{}; + var partStmts = List(Stmt).fromOwnedSlice(p.allocator, stmts); + try p.visitStmtsAndPrependTempRefs(&partStmts, &opts); - pub fn appendPart(p: *P, parts: *List(js_ast.Part), stmts: []Stmt) !void { - p.symbol_uses = SymbolUseMap.init(p.allocator); - p.declared_symbols.deinit(); - p.declared_symbols = @TypeOf(p.declared_symbols).init(p.allocator); - p.import_records_for_current_part.deinit(); - p.import_records_for_current_part = @TypeOf(p.import_records_for_current_part).init(p.allocator); - p.scopes_for_current_part.deinit(); - p.scopes_for_current_part = @TypeOf(p.scopes_for_current_part).init(p.allocator); - var opts = PrependTempRefsOpts{}; - var partStmts = List(Stmt).fromOwnedSlice(p.allocator, stmts); - try p.visitStmtsAndPrependTempRefs(&partStmts, &opts); - - // Insert any relocated variable statements now - if (p.relocated_top_level_vars.items.len > 0) { - var already_declared = RefBoolMap.init(p.allocator); - for (p.relocated_top_level_vars.items) |*local| { - // Follow links because "var" declarations may be merged due to hoisting - while (local.ref != null) { - const link = p.symbols.items[local.ref.?.inner_index].link orelse break; - if (link.isNull()) { - break; + // Insert any relocated variable statements now + if (p.relocated_top_level_vars.items.len > 0) { + var already_declared = RefBoolMap.init(p.allocator); + for (p.relocated_top_level_vars.items) |*local| { + // Follow links because "var" declarations may be merged due to hoisting + while (local.ref != null) { + const link = p.symbols.items[local.ref.?.inner_index].link orelse break; + if (link.isNull()) { + break; + } + local.ref = link; } - local.ref = link; - } - const ref = local.ref orelse continue; - if (!already_declared.contains(ref)) { - try already_declared.put(ref, true); + const ref = local.ref orelse continue; + if (!already_declared.contains(ref)) { + try already_declared.put(ref, true); - const decls = try p.allocator.alloc(G.Decl, 1); - decls[0] = Decl{ - .binding = p.b(B.Identifier{ .ref = ref }, local.loc), - }; - try partStmts.append(p.s(S.Local{ .decls = decls }, local.loc)); + const decls = try p.allocator.alloc(G.Decl, 1); + decls[0] = Decl{ + .binding = p.b(B.Identifier{ .ref = ref }, local.loc), + }; + try partStmts.append(p.s(S.Local{ .decls = decls }, local.loc)); + } } - } - p.relocated_top_level_vars.deinit(); - p.relocated_top_level_vars = @TypeOf(p.relocated_top_level_vars).init(p.allocator); + p.relocated_top_level_vars.deinit(); + p.relocated_top_level_vars = @TypeOf(p.relocated_top_level_vars).init(p.allocator); - // Follow links because "var" declarations may be merged due to hoisting + // Follow links because "var" declarations may be merged due to hoisting - // while (true) { - // const link = p.symbols.items[local.ref.inner_index].link; - // } - } + // while (true) { + // const link = p.symbols.items[local.ref.inner_index].link; + // } + } - if (partStmts.items.len > 0) { - const _stmts = partStmts.toOwnedSlice(); - var part = js_ast.Part{ - .stmts = _stmts, - .symbol_uses = p.symbol_uses, - .declared_symbols = p.declared_symbols.toOwnedSlice(), - .import_record_indices = p.import_records_for_current_part.toOwnedSlice(), - .scopes = p.scopes_for_current_part.toOwnedSlice(), - .can_be_removed_if_unused = p.stmtsCanBeRemovedIfUnused(_stmts), - }; + if (partStmts.items.len > 0) { + const _stmts = partStmts.toOwnedSlice(); + var part = js_ast.Part{ + .stmts = _stmts, + .symbol_uses = p.symbol_uses, + .declared_symbols = p.declared_symbols.toOwnedSlice(), + .import_record_indices = p.import_records_for_current_part.toOwnedSlice(), + .scopes = p.scopes_for_current_part.toOwnedSlice(), + .can_be_removed_if_unused = p.stmtsCanBeRemovedIfUnused(_stmts), + }; - try parts.append(part); + try parts.append(part); + } } - } - pub fn bindingCanBeRemovedIfUnused(p: *P, binding: Binding) bool { - switch (binding.data) { - .b_array => |bi| { - for (bi.items) |*item| { - if (!p.bindingCanBeRemovedIfUnused(item.binding)) { - return false; - } - - if (item.default_value) |*default| { - if (!p.exprCanBeRemovedIfUnused(default)) { + pub fn bindingCanBeRemovedIfUnused(p: *P, binding: Binding) bool { + switch (binding.data) { + .b_array => |bi| { + for (bi.items) |*item| { + if (!p.bindingCanBeRemovedIfUnused(item.binding)) { return false; } - } - } - }, - .b_object => |bi| { - for (bi.properties) |*property| { - if (!property.flags.is_spread and !p.exprCanBeRemovedIfUnused(&property.key)) { - return false; - } - if (!p.bindingCanBeRemovedIfUnused(property.value)) { - return false; + if (item.default_value) |*default| { + if (!p.exprCanBeRemovedIfUnused(default)) { + return false; + } + } } - - if (property.default_value) |*default| { - if (!p.exprCanBeRemovedIfUnused(default)) { + }, + .b_object => |bi| { + for (bi.properties) |*property| { + if (!property.flags.is_spread and !p.exprCanBeRemovedIfUnused(&property.key)) { return false; } - } - } - }, - else => {}, - } - return true; - } - - pub fn stmtsCanBeRemovedIfUnused(p: *P, stmts: []Stmt) bool { - for (stmts) |stmt| { - switch (stmt.data) { - // These never have side effects - .s_function, .s_empty => {}, - - // Let these be removed if they are unused. Note that we also need to - // check if the imported file is marked as "sideEffects: false" before we - // can remove a SImport statement. Otherwise the import must be kept for - // its side effects. - .s_import => |st| {}, - .s_class => |st| { - if (!p.classCanBeRemovedIfUnused(&st.class)) { - return false; - } - }, - .s_expr => |st| { - if (st.does_not_affect_tree_shaking) { - // Expressions marked with this are automatically generated and have - // no side effects by construction. - break; - } else if (!p.exprCanBeRemovedIfUnused(&st.value)) { - return false; - } - }, - .s_local => |st| { - for (st.decls) |*decl| { - if (!p.bindingCanBeRemovedIfUnused(decl.binding)) { + if (!p.bindingCanBeRemovedIfUnused(property.value)) { return false; } - if (decl.value) |*decl_value| { - if (!p.exprCanBeRemovedIfUnused(decl_value)) { + if (property.default_value) |*default| { + if (!p.exprCanBeRemovedIfUnused(default)) { return false; } } } }, + else => {}, + } - // Exports are tracked separately, so this isn't necessary - .s_export_clause, .s_export_from => {}, + return true; + } - .s_export_default => |st| { - switch (st.value) { - .stmt => |s2| { - switch (s2.data) { - // These never have side effects - .s_function => {}, - .s_class => { - if (!p.classCanBeRemovedIfUnused(&s2.data.s_class.class)) { - return false; - } - }, - else => { - Global.panic("Unexpected type in export default: {s}", .{s2}); - }, - } - }, - .expr => |*exp| { - if (!p.exprCanBeRemovedIfUnused(exp)) { + pub fn stmtsCanBeRemovedIfUnused(p: *P, stmts: []Stmt) bool { + for (stmts) |stmt| { + switch (stmt.data) { + // These never have side effects + .s_function, .s_empty => {}, + + // Let these be removed if they are unused. Note that we also need to + // check if the imported file is marked as "sideEffects: false" before we + // can remove a SImport statement. Otherwise the import must be kept for + // its side effects. + .s_import => |st| {}, + .s_class => |st| { + if (!p.classCanBeRemovedIfUnused(&st.class)) { + return false; + } + }, + .s_expr => |st| { + if (st.does_not_affect_tree_shaking) { + // Expressions marked with this are automatically generated and have + // no side effects by construction. + break; + } else if (!p.exprCanBeRemovedIfUnused(&st.value)) { + return false; + } + }, + .s_local => |st| { + for (st.decls) |*decl| { + if (!p.bindingCanBeRemovedIfUnused(decl.binding)) { return false; } - }, - } - }, - else => { - return false; - }, + + if (decl.value) |*decl_value| { + if (!p.exprCanBeRemovedIfUnused(decl_value)) { + return false; + } + } + } + }, + + // Exports are tracked separately, so this isn't necessary + .s_export_clause, .s_export_from => {}, + + .s_export_default => |st| { + switch (st.value) { + .stmt => |s2| { + switch (s2.data) { + // These never have side effects + .s_function => {}, + .s_class => { + if (!p.classCanBeRemovedIfUnused(&s2.data.s_class.class)) { + return false; + } + }, + else => { + Global.panic("Unexpected type in export default: {s}", .{s2}); + }, + } + }, + .expr => |*exp| { + if (!p.exprCanBeRemovedIfUnused(exp)) { + return false; + } + }, + } + }, + else => { + return false; + }, + } } - } - return true; - } + return true; + } - pub fn visitStmtsAndPrependTempRefs(p: *P, stmts: *List(Stmt), opts: *PrependTempRefsOpts) !void { - var old_temp_refs = p.temp_refs_to_declare; - var old_temp_ref_count = p.temp_ref_count; - p.temp_refs_to_declare.deinit(); - p.temp_refs_to_declare = @TypeOf(p.temp_refs_to_declare).init(p.allocator); - p.temp_ref_count = 0; + pub fn visitStmtsAndPrependTempRefs(p: *P, stmts: *List(Stmt), opts: *PrependTempRefsOpts) !void { + var old_temp_refs = p.temp_refs_to_declare; + var old_temp_ref_count = p.temp_ref_count; + p.temp_refs_to_declare.deinit(); + p.temp_refs_to_declare = @TypeOf(p.temp_refs_to_declare).init(p.allocator); + p.temp_ref_count = 0; - try p.visitStmts(stmts, opts.kind); + try p.visitStmts(stmts, opts.kind); - // Prepend values for "this" and "arguments" - if (opts.fn_body_loc != null) { - // Capture "this" - if (p.fn_only_data_visit.this_capture_ref) |ref| { - try p.temp_refs_to_declare.append(TempRef{ - .ref = ref, - .value = p.e(E.This{}, opts.fn_body_loc orelse p.panic("Internal error: Expected opts.fn_body_loc to exist", .{})), - }); + // Prepend values for "this" and "arguments" + if (opts.fn_body_loc != null) { + // Capture "this" + if (p.fn_only_data_visit.this_capture_ref) |ref| { + try p.temp_refs_to_declare.append(TempRef{ + .ref = ref, + .value = p.e(E.This{}, opts.fn_body_loc orelse p.panic("Internal error: Expected opts.fn_body_loc to exist", .{})), + }); + } } } - } - pub fn recordDeclaredSymbol(p: *P, ref: Ref) !void { - try p.declared_symbols.append(js_ast.DeclaredSymbol{ - .ref = ref, - .is_top_level = p.current_scope == p.module_scope, - }); - } + pub fn recordDeclaredSymbol(p: *P, ref: Ref) !void { + try p.declared_symbols.append(js_ast.DeclaredSymbol{ + .ref = ref, + .is_top_level = p.current_scope == p.module_scope, + }); + } - pub fn visitExpr(p: *P, expr: Expr) Expr { - return p.visitExprInOut(expr, ExprIn{}); - } + pub fn visitExpr(p: *P, expr: Expr) Expr { + return p.visitExprInOut(expr, ExprIn{}); + } - pub fn visitFunc(p: *P, _func: G.Fn, open_parens_loc: logger.Loc) G.Fn { - var func = _func; - const old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_visit); - const old_fn_only_data = std.mem.toBytes(p.fn_only_data_visit); - p.fn_or_arrow_data_visit = FnOrArrowDataVisit{ .is_async = func.flags.is_async }; - p.fn_only_data_visit = FnOnlyDataVisit{ .is_this_nested = true, .arguments_ref = func.arguments_ref }; + pub fn visitFunc(p: *P, _func: G.Fn, open_parens_loc: logger.Loc) G.Fn { + var func = _func; + const old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_visit); + const old_fn_only_data = std.mem.toBytes(p.fn_only_data_visit); + p.fn_or_arrow_data_visit = FnOrArrowDataVisit{ .is_async = func.flags.is_async }; + p.fn_only_data_visit = FnOnlyDataVisit{ .is_this_nested = true, .arguments_ref = func.arguments_ref }; - if (func.name) |name| { - if (name.ref) |name_ref| { - p.recordDeclaredSymbol(name_ref) catch unreachable; - const symbol_name = p.symbols.items[name_ref.inner_index].original_name; - if (isEvalOrArguments(symbol_name)) { - p.markStrictModeFeature(.eval_or_arguments, js_lexer.rangeOfIdentifier(p.source, name.loc), symbol_name) catch unreachable; + if (func.name) |name| { + if (name.ref) |name_ref| { + p.recordDeclaredSymbol(name_ref) catch unreachable; + const symbol_name = p.symbols.items[name_ref.inner_index].original_name; + if (isEvalOrArguments(symbol_name)) { + p.markStrictModeFeature(.eval_or_arguments, js_lexer.rangeOfIdentifier(p.source, name.loc), symbol_name) catch unreachable; + } } } - } - - const body = func.body; - p.pushScopeForVisitPass(.function_args, open_parens_loc) catch unreachable; - p.visitArgs( - func.args, - VisitArgsOpts{ - .has_rest_arg = func.flags.has_rest_arg, - .body = body.stmts, - .is_unique_formal_parameters = true, - }, - ); + const body = func.body; - p.pushScopeForVisitPass(.function_body, body.loc) catch unreachable; - var stmts = List(Stmt).fromOwnedSlice(p.allocator, body.stmts); - var temp_opts = PrependTempRefsOpts{ .kind = StmtsKind.fn_body, .fn_body_loc = body.loc }; - p.visitStmtsAndPrependTempRefs(&stmts, &temp_opts) catch unreachable; - func.body = G.FnBody{ .stmts = stmts.toOwnedSlice(), .loc = body.loc }; + p.pushScopeForVisitPass(.function_args, open_parens_loc) catch unreachable; + p.visitArgs( + func.args, + VisitArgsOpts{ + .has_rest_arg = func.flags.has_rest_arg, + .body = body.stmts, + .is_unique_formal_parameters = true, + }, + ); - p.popScope(); - p.popScope(); + p.pushScopeForVisitPass(.function_body, body.loc) catch unreachable; + var stmts = List(Stmt).fromOwnedSlice(p.allocator, body.stmts); + var temp_opts = PrependTempRefsOpts{ .kind = StmtsKind.fn_body, .fn_body_loc = body.loc }; + p.visitStmtsAndPrependTempRefs(&stmts, &temp_opts) catch unreachable; + func.body = G.FnBody{ .stmts = stmts.toOwnedSlice(), .loc = body.loc }; - p.fn_or_arrow_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_visit), &old_fn_or_arrow_data); - p.fn_only_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_only_data_visit), &old_fn_only_data); - return func; - } + p.popScope(); + p.popScope(); - pub fn maybeKeepExprSymbolName(p: *P, expr: Expr, original_name: string, was_anonymous_named_expr: bool) Expr { - return if (was_anonymous_named_expr) p.keepExprSymbolName(expr, original_name) else expr; - } + p.fn_or_arrow_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_visit), &old_fn_or_arrow_data); + p.fn_only_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_only_data_visit), &old_fn_only_data); + return func; + } - pub fn valueForThis(p: *P, loc: logger.Loc) ?Expr { - // Substitute "this" if we're inside a static class property initializer - if (p.fn_only_data_visit.this_class_static_ref) |ref| { - p.recordUsage(ref); - return p.e(E.Identifier{ .ref = ref }, loc); + pub fn maybeKeepExprSymbolName(p: *P, expr: Expr, original_name: string, was_anonymous_named_expr: bool) Expr { + return if (was_anonymous_named_expr) p.keepExprSymbolName(expr, original_name) else expr; } - // oroigianlly was !=- modepassthrough - if (!p.fn_only_data_visit.is_this_nested) { - if (p.has_es_module_syntax) { - // In an ES6 module, "this" is supposed to be undefined. Instead of - // doing this at runtime using "fn.call(undefined)", we do it at - // compile time using expression substitution here. - return Expr{ .loc = loc, .data = nullValueExpr }; - } else { - // In a CommonJS module, "this" is supposed to be the same as "exports". - // Instead of doing this at runtime using "fn.call(module.exports)", we - // do it at compile time using expression substitution here. - p.recordUsage(p.exports_ref); - return p.e(E.Identifier{ .ref = p.exports_ref }, loc); + pub fn valueForThis(p: *P, loc: logger.Loc) ?Expr { + // Substitute "this" if we're inside a static class property initializer + if (p.fn_only_data_visit.this_class_static_ref) |ref| { + p.recordUsage(ref); + return p.e(E.Identifier{ .ref = ref }, loc); } - } - return null; - } + // oroigianlly was !=- modepassthrough + if (!p.fn_only_data_visit.is_this_nested) { + if (p.has_es_module_syntax) { + // In an ES6 module, "this" is supposed to be undefined. Instead of + // doing this at runtime using "fn.call(undefined)", we do it at + // compile time using expression substitution here. + return Expr{ .loc = loc, .data = nullValueExpr }; + } else { + // In a CommonJS module, "this" is supposed to be the same as "exports". + // Instead of doing this at runtime using "fn.call(module.exports)", we + // do it at compile time using expression substitution here. + p.recordUsage(p.exports_ref); + return p.e(E.Identifier{ .ref = p.exports_ref }, loc); + } + } - pub fn visitExprInOut(p: *P, expr: Expr, in: ExprIn) Expr { - // Output.print("\nVisit: {s} - {d}\n", .{ @tagName(expr.data), expr.loc.start }); - switch (expr.data) { - .e_null, .e_super, .e_boolean, .e_big_int, .e_reg_exp, .e_new_target, .e_undefined => {}, - .e_string => |e_| { + return null; + } - // If you're using this, you're probably not using 0-prefixed legacy octal notation - // if e.LegacyOctalLoc.Start > 0 { - }, - .e_number => |e_| { + pub fn visitExprInOut(p: *P, expr: Expr, in: ExprIn) Expr { + // Output.print("\nVisit: {s} - {d}\n", .{ @tagName(expr.data), expr.loc.start }); + switch (expr.data) { + .e_null, .e_super, .e_boolean, .e_big_int, .e_reg_exp, .e_new_target, .e_undefined => {}, + .e_string => |e_| { - // idc about legacy octal loc - }, - .e_this => { - if (p.valueForThis(expr.loc)) |exp| { - return exp; - } + // If you're using this, you're probably not using 0-prefixed legacy octal notation + // if e.LegacyOctalLoc.Start > 0 { + }, + .e_number => |e_| { - // // Capture "this" inside arrow functions that will be lowered into normal - // // function expressions for older language environments - // if p.fnOrArrowDataVisit.isArrow && p.options.unsupportedJSFeatures.Has(compat.Arrow) && p.fnOnlyDataVisit.isThisNested { - // return js_ast.Expr{Loc: expr.Loc, Data: &js_ast.EIdentifier{Ref: p.captureThis()}}, exprOut{} - // } - }, + // idc about legacy octal loc + }, + .e_this => { + if (p.valueForThis(expr.loc)) |exp| { + return exp; + } + + // // Capture "this" inside arrow functions that will be lowered into normal + // // function expressions for older language environments + // if p.fnOrArrowDataVisit.isArrow && p.options.unsupportedJSFeatures.Has(compat.Arrow) && p.fnOnlyDataVisit.isThisNested { + // return js_ast.Expr{Loc: expr.Loc, Data: &js_ast.EIdentifier{Ref: p.captureThis()}}, exprOut{} + // } + }, - .e_import_meta => { - // TODO: delete import.meta might not work - const is_delete_target = std.meta.activeTag(p.delete_target) == .e_import_meta; + .e_import_meta => { + // TODO: delete import.meta might not work + const is_delete_target = std.meta.activeTag(p.delete_target) == .e_import_meta; - if (p.define.dots.get("meta")) |meta| { - for (meta) |define| { - if (p.isDotDefineMatch(expr, define.parts)) { - // Substitute user-specified defines - return p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &define.data); + if (p.define.dots.get("meta")) |meta| { + for (meta) |define| { + if (p.isDotDefineMatch(expr, define.parts)) { + // Substitute user-specified defines + return p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &define.data); + } } } - } - if (!p.import_meta_ref.isNull()) { - p.recordUsage(p.import_meta_ref); - return p.e(E.Identifier{ .ref = p.import_meta_ref }, expr.loc); - } - }, - .e_spread => |exp| { - exp.value = p.visitExpr(exp.value); - }, - .e_identifier => |e_| { - const is_delete_target = @as(Expr.Tag, p.delete_target) == .e_identifier and expr.data.e_identifier == p.delete_target.e_identifier; + if (!p.import_meta_ref.isNull()) { + p.recordUsage(p.import_meta_ref); + return p.e(E.Identifier{ .ref = p.import_meta_ref }, expr.loc); + } + }, + .e_spread => |exp| { + exp.value = p.visitExpr(exp.value); + }, + .e_identifier => |e_| { + const is_delete_target = @as(Expr.Tag, p.delete_target) == .e_identifier and expr.data.e_identifier == p.delete_target.e_identifier; - const name = p.loadNameFromRef(e_.ref); - if (p.isStrictMode() and js_lexer.StrictModeReservedWords.has(name)) { - p.markStrictModeFeature(.reserved_word, js_lexer.rangeOfIdentifier(p.source, expr.loc), name) catch unreachable; - } + const name = p.loadNameFromRef(e_.ref); + if (p.isStrictMode() and js_lexer.StrictModeReservedWords.has(name)) { + p.markStrictModeFeature(.reserved_word, js_lexer.rangeOfIdentifier(p.source, expr.loc), name) catch unreachable; + } - const result = p.findSymbol(expr.loc, name) catch unreachable; + const result = p.findSymbol(expr.loc, name) catch unreachable; - e_.must_keep_due_to_with_stmt = result.is_inside_with_scope; - e_.ref = result.ref; + e_.must_keep_due_to_with_stmt = result.is_inside_with_scope; + e_.ref = result.ref; - // Handle assigning to a constant - if (in.assign_target != .none and p.symbols.items[result.ref.inner_index].kind == .cconst) { - const r = js_lexer.rangeOfIdentifier(p.source, expr.loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot assign to {s} because it is a constant", .{name}) catch unreachable; - } + // Handle assigning to a constant + if (in.assign_target != .none and p.symbols.items[result.ref.inner_index].kind == .cconst) { + const r = js_lexer.rangeOfIdentifier(p.source, expr.loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot assign to {s} because it is a constant", .{name}) catch unreachable; + } - var original_name: ?string = null; + var original_name: ?string = null; - // Substitute user-specified defines for unbound symbols - if (p.symbols.items[e_.ref.inner_index].kind == .unbound and !result.is_inside_with_scope and !is_delete_target) { - if (p.define.identifiers.get(name)) |def| { - if (!def.isUndefined()) { - const newvalue = p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &def); + // Substitute user-specified defines for unbound symbols + if (p.symbols.items[e_.ref.inner_index].kind == .unbound and !result.is_inside_with_scope and !is_delete_target) { + if (p.define.identifiers.get(name)) |def| { + if (!def.isUndefined()) { + const newvalue = p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &def); - // Don't substitute an identifier for a non-identifier if this is an - // assignment target, since it'll cause a syntax error - if (@as(Expr.Tag, newvalue.data) == .e_identifier or in.assign_target == .none) { - return newvalue; - } + // Don't substitute an identifier for a non-identifier if this is an + // assignment target, since it'll cause a syntax error + if (@as(Expr.Tag, newvalue.data) == .e_identifier or in.assign_target == .none) { + return newvalue; + } - original_name = def.original_name; - } + original_name = def.original_name; + } - // Copy the side effect flags over in case this expression is unused - if (def.can_be_removed_if_unused) { - e_.can_be_removed_if_unused = true; - } - if (def.call_can_be_unwrapped_if_unused and !p.options.ignore_dce_annotations) { - e_.call_can_be_unwrapped_if_unused = true; + // Copy the side effect flags over in case this expression is unused + if (def.can_be_removed_if_unused) { + e_.can_be_removed_if_unused = true; + } + if (def.call_can_be_unwrapped_if_unused and !p.options.ignore_dce_annotations) { + e_.call_can_be_unwrapped_if_unused = true; + } } } - } - return p.handleIdentifier(expr.loc, e_, original_name, IdentifierOpts{ - .assign_target = in.assign_target, - .is_delete_target = is_delete_target, - .was_originally_identifier = true, - }); - }, - .e_private_identifier => { - p.panic("Unexpected private identifier. This is an internal error - not your fault.", .{}); - }, - .e_jsx_element => |e_| { - const tag = tagger: { - if (e_.tag) |_tag| { - break :tagger p.visitExpr(_tag); - } else { - break :tagger p.jsxStringsToMemberExpression(expr.loc, p.jsx_fragment_ref); - } - }; + return p.handleIdentifier(expr.loc, e_, original_name, IdentifierOpts{ + .assign_target = in.assign_target, + .is_delete_target = is_delete_target, + .was_originally_identifier = true, + }); + }, + .e_private_identifier => { + p.panic("Unexpected private identifier. This is an internal error - not your fault.", .{}); + }, + .e_jsx_element => |e_| { + const tag = tagger: { + if (e_.tag) |_tag| { + break :tagger p.visitExpr(_tag); + } else { + break :tagger p.jsxStringsToMemberExpression(expr.loc, p.jsx_fragment_ref); + } + }; - for (e_.properties) |property, i| { - if (property.kind != .spread) { - e_.properties[i].key = p.visitExpr(e_.properties[i].key.?); - } + for (e_.properties) |property, i| { + if (property.kind != .spread) { + e_.properties[i].key = p.visitExpr(e_.properties[i].key.?); + } - if (property.value != null) { - e_.properties[i].value = p.visitExpr(e_.properties[i].value.?); - } + if (property.value != null) { + e_.properties[i].value = p.visitExpr(e_.properties[i].value.?); + } - if (property.initializer != null) { - e_.properties[i].initializer = p.visitExpr(e_.properties[i].initializer.?); + if (property.initializer != null) { + e_.properties[i].initializer = p.visitExpr(e_.properties[i].initializer.?); + } } - } - const runtime = if (p.options.jsx.runtime == .automatic and !e_.flags.is_key_before_rest) options.JSX.Runtime.automatic else options.JSX.Runtime.classic; + const runtime = if (p.options.jsx.runtime == .automatic and !e_.flags.is_key_before_rest) options.JSX.Runtime.automatic else options.JSX.Runtime.classic; - // TODO: maybe we should split these into two different AST Nodes - // That would reduce the amount of allocations a little - switch (runtime) { - .classic => { - // Arguments to createElement() - const args = p.allocator.alloc(Expr, 1 + e_.children.len) catch unreachable; - var i: usize = 1; - if (e_.properties.len > 0) { - if (e_.key) |key| { - var props = List(G.Property).fromOwnedSlice(p.allocator, e_.properties); - props.append(G.Property{ .key = Expr{ .loc = key.loc, .data = keyExprData }, .value = key }) catch unreachable; - args[0] = p.e(E.Object{ .properties = props.toOwnedSlice() }, expr.loc); + // TODO: maybe we should split these into two different AST Nodes + // That would reduce the amount of allocations a little + switch (runtime) { + .classic => { + // Arguments to createElement() + const args = p.allocator.alloc(Expr, 1 + e_.children.len) catch unreachable; + var i: usize = 1; + if (e_.properties.len > 0) { + if (e_.key) |key| { + var props = List(G.Property).fromOwnedSlice(p.allocator, e_.properties); + props.append(G.Property{ .key = Expr{ .loc = key.loc, .data = keyExprData }, .value = key }) catch unreachable; + args[0] = p.e(E.Object{ .properties = props.toOwnedSlice() }, expr.loc); + } else { + args[0] = p.e(E.Object{ .properties = e_.properties }, expr.loc); + } } else { - args[0] = p.e(E.Object{ .properties = e_.properties }, expr.loc); + args[0] = p.e(E.Null{}, expr.loc); } - } else { - args[0] = p.e(E.Null{}, expr.loc); - } - - for (e_.children) |child| { - args[i] = p.visitExpr(child); - i += 1; - } - - // Call createElement() - return p.e(E.Call{ - .target = p.jsxStringsToMemberExpression(expr.loc, p.jsx_runtime_ref), - .args = args, - // Enable tree shaking - .can_be_unwrapped_if_unused = !p.options.ignore_dce_annotations, - }, expr.loc); - }, - // function jsxDEV(type, config, maybeKey, source, self) { - .automatic => { - // Assuming jsx development for now. - // React.jsxDEV(type, arguments, key, isStaticChildren, source, self) - // React.jsx(type, arguments, key) - - const args = p.allocator.alloc(Expr, if (p.options.jsx.development) @as(usize, 6) else @as(usize, 4)) catch unreachable; - args[0] = tag; - var props = List(G.Property).fromOwnedSlice(p.allocator, e_.properties); - // arguments needs to be like - // { - // ...props, - // children: [] - // } - for (e_.children) |child, i| { - e_.children[i] = p.visitExpr(child); - } - const children_key = Expr{ .data = jsxChildrenKeyData, .loc = expr.loc }; - // - props.append(G.Property{ - .key = children_key, - .value = p.e(E.Array{ - .items = e_.children, - .is_single_line = e_.children.len < 2, - }, expr.loc), - }) catch unreachable; + for (e_.children) |child| { + args[i] = p.visitExpr(child); + i += 1; + } + + // Call createElement() + return p.e(E.Call{ + .target = p.jsxStringsToMemberExpression(expr.loc, p.jsx_runtime_ref), + .args = args, + // Enable tree shaking + .can_be_unwrapped_if_unused = !p.options.ignore_dce_annotations, + }, expr.loc); + }, + // function jsxDEV(type, config, maybeKey, source, self) { + .automatic => { + // Assuming jsx development for now. + // React.jsxDEV(type, arguments, key, isStaticChildren, source, self) + // React.jsx(type, arguments, key) + + const args = p.allocator.alloc(Expr, if (p.options.jsx.development) @as(usize, 6) else @as(usize, 4)) catch unreachable; + args[0] = tag; + var props = List(G.Property).fromOwnedSlice(p.allocator, e_.properties); + // arguments needs to be like + // { + // ...props, + // children: [] + // } + for (e_.children) |child, i| { + e_.children[i] = p.visitExpr(child); + } + const children_key = Expr{ .data = jsxChildrenKeyData, .loc = expr.loc }; - args[1] = p.e(E.Object{ - .properties = props.toOwnedSlice(), - }, expr.loc); + // + props.append(G.Property{ + .key = children_key, + .value = p.e(E.Array{ + .items = e_.children, + .is_single_line = e_.children.len < 2, + }, expr.loc), + }) catch unreachable; + + args[1] = p.e(E.Object{ + .properties = props.toOwnedSlice(), + }, expr.loc); - if (e_.key) |key| { - args[2] = key; - } else { - // if (maybeKey !== undefined) - args[2] = Expr{ .loc = expr.loc, .data = .{ - .e_undefined = E.Undefined{}, - } }; - } + if (e_.key) |key| { + args[2] = key; + } else { + // if (maybeKey !== undefined) + args[2] = Expr{ .loc = expr.loc, .data = .{ + .e_undefined = E.Undefined{}, + } }; + } - if (p.options.jsx.development) { - // is the return type of the first child an array? - // It's dynamic - // Else, it's static - args[3] = Expr{ .loc = expr.loc, .data = .{ .e_boolean = .{ - .value = e_.children.len == 0 or e_.children.len > 1 or std.meta.activeTag(e_.children[0].data) != .e_array, - } } }; + if (p.options.jsx.development) { + // is the return type of the first child an array? + // It's dynamic + // Else, it's static + args[3] = Expr{ .loc = expr.loc, .data = .{ .e_boolean = .{ + .value = e_.children.len == 0 or e_.children.len > 1 or std.meta.activeTag(e_.children[0].data) != .e_array, + } } }; + + var source = p.allocator.alloc(G.Property, 2) catch unreachable; + p.recordUsage(p.jsx_filename_ref); + source[0] = G.Property{ + .key = Expr{ .loc = expr.loc, .data = Prefill.Data.Filename }, + .value = p.e(E.Identifier{ .ref = p.jsx_filename_ref }, expr.loc), + }; - var source = p.allocator.alloc(G.Property, 2) catch unreachable; - p.recordUsage(p.jsx_filename_ref); - source[0] = G.Property{ - .key = Expr{ .loc = expr.loc, .data = Prefill.Data.Filename }, - .value = p.e(E.Identifier{ .ref = p.jsx_filename_ref }, expr.loc), - }; + source[1] = G.Property{ + .key = Expr{ .loc = expr.loc, .data = Prefill.Data.LineNumber }, + .value = p.e(E.Number{ .value = @intToFloat(f64, expr.loc.start) }, expr.loc), + }; - source[1] = G.Property{ - .key = Expr{ .loc = expr.loc, .data = Prefill.Data.LineNumber }, - .value = p.e(E.Number{ .value = @intToFloat(f64, expr.loc.start) }, expr.loc), - }; + // Officially, they ask for columnNumber. But I don't see any usages of it in the code! + // source[2] = G.Property{ + // .key = Expr{ .loc = expr.loc, .data = Prefill.Data.ColumnNumber }, + // .value = p.e(E.Number{ .value = @intToFloat(f64, expr.loc.start) }, expr.loc), + // }; - // Officially, they ask for columnNumber. But I don't see any usages of it in the code! - // source[2] = G.Property{ - // .key = Expr{ .loc = expr.loc, .data = Prefill.Data.ColumnNumber }, - // .value = p.e(E.Number{ .value = @intToFloat(f64, expr.loc.start) }, expr.loc), - // }; + args[4] = p.e(E.Object{ + .properties = source, + }, expr.loc); + args[5] = Expr{ .data = Prefill.Data.This, .loc = expr.loc }; + } - args[4] = p.e(E.Object{ - .properties = source, + return p.e(E.Call{ + .target = p.jsxStringsToMemberExpressionAutomatic(expr.loc), + .args = args, + // Enable tree shaking + .can_be_unwrapped_if_unused = !p.options.ignore_dce_annotations, + .was_jsx_element = true, }, expr.loc); - args[5] = Expr{ .data = Prefill.Data.This, .loc = expr.loc }; - } + }, + else => unreachable, + } + }, - return p.e(E.Call{ - .target = p.jsxStringsToMemberExpressionAutomatic(expr.loc), - .args = args, - // Enable tree shaking - .can_be_unwrapped_if_unused = !p.options.ignore_dce_annotations, - .was_jsx_element = true, - }, expr.loc); - }, - else => unreachable, - } - }, + .e_template => |e_| { + if (e_.tag) |tag| { + e_.tag = p.visitExpr(tag); + } - .e_template => |e_| { - if (e_.tag) |tag| { - e_.tag = p.visitExpr(tag); - } + for (e_.parts) |*part| { + part.value = p.visitExpr(part.value); + } + }, - for (e_.parts) |*part| { - part.value = p.visitExpr(part.value); - } - }, + .e_binary => |e_| { + switch (e_.left.data) { + // Special-case private identifiers + .e_private_identifier => |private| { + if (e_.op == .bin_in) { + const name = p.loadNameFromRef(private.ref); + const result = p.findSymbol(e_.left.loc, name) catch unreachable; + private.ref = result.ref; - .e_binary => |e_| { - switch (e_.left.data) { - // Special-case private identifiers - .e_private_identifier => |private| { - if (e_.op == .bin_in) { - const name = p.loadNameFromRef(private.ref); - const result = p.findSymbol(e_.left.loc, name) catch unreachable; - private.ref = result.ref; + // Unlike regular identifiers, there are no unbound private identifiers + const symbol: Symbol = p.symbols.items[result.ref.inner_index]; + if (!Symbol.isKindPrivate(symbol.kind)) { + const r = logger.Range{ .loc = e_.left.loc, .len = @intCast(i32, name.len) }; + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Private name \"{s}\" must be declared in an enclosing class", .{name}) catch unreachable; + } - // Unlike regular identifiers, there are no unbound private identifiers - const symbol: Symbol = p.symbols.items[result.ref.inner_index]; - if (!Symbol.isKindPrivate(symbol.kind)) { - const r = logger.Range{ .loc = e_.left.loc, .len = @intCast(i32, name.len) }; - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Private name \"{s}\" must be declared in an enclosing class", .{name}) catch unreachable; + e_.right = p.visitExpr(e_.right); + // privateSymbolNeedsToBeLowered + return expr; } + }, + else => {}, + } - e_.right = p.visitExpr(e_.right); - // privateSymbolNeedsToBeLowered - return expr; - } - }, - else => {}, - } - - const is_call_target = @as(Expr.Tag, p.call_target) == .e_binary and expr.data.e_binary == p.call_target.e_binary; - const is_stmt_expr = @as(Expr.Tag, p.stmt_expr_value) == .e_binary and expr.data.e_binary == p.stmt_expr_value.e_binary; - const was_anonymous_named_expr = p.isAnonymousNamedExpr(e_.right); + const is_call_target = @as(Expr.Tag, p.call_target) == .e_binary and expr.data.e_binary == p.call_target.e_binary; + const is_stmt_expr = @as(Expr.Tag, p.stmt_expr_value) == .e_binary and expr.data.e_binary == p.stmt_expr_value.e_binary; + const was_anonymous_named_expr = p.isAnonymousNamedExpr(e_.right); - e_.left = p.visitExprInOut(e_.left, ExprIn{ - .assign_target = e_.op.binaryAssignTarget(), - }); + e_.left = p.visitExprInOut(e_.left, ExprIn{ + .assign_target = e_.op.binaryAssignTarget(), + }); - // Mark the control flow as dead if the branch is never taken - switch (e_.op) { - .bin_logical_or => { - const side_effects = SideEffects.toBoolean(e_.left.data); - if (side_effects.ok and side_effects.value) { - // "true || dead" - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; - e_.right = p.visitExpr(e_.right); - p.is_control_flow_dead = old; - } else { - e_.right = p.visitExpr(e_.right); - } - }, - .bin_logical_and => { - const side_effects = SideEffects.toBoolean(e_.left.data); - if (side_effects.ok and !side_effects.value) { - // "false && dead" - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; - e_.right = p.visitExpr(e_.right); - p.is_control_flow_dead = old; - } else { - e_.right = p.visitExpr(e_.right); - } - }, - .bin_nullish_coalescing => { - const side_effects = SideEffects.toNullOrUndefined(e_.left.data); - if (side_effects.ok and side_effects.value) { - // "false && dead" - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; - e_.right = p.visitExpr(e_.right); - p.is_control_flow_dead = old; - } else { + // Mark the control flow as dead if the branch is never taken + switch (e_.op) { + .bin_logical_or => { + const side_effects = SideEffects.toBoolean(e_.left.data); + if (side_effects.ok and side_effects.value) { + // "true || dead" + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + e_.right = p.visitExpr(e_.right); + p.is_control_flow_dead = old; + } else { + e_.right = p.visitExpr(e_.right); + } + }, + .bin_logical_and => { + const side_effects = SideEffects.toBoolean(e_.left.data); + if (side_effects.ok and !side_effects.value) { + // "false && dead" + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + e_.right = p.visitExpr(e_.right); + p.is_control_flow_dead = old; + } else { + e_.right = p.visitExpr(e_.right); + } + }, + .bin_nullish_coalescing => { + const side_effects = SideEffects.toNullOrUndefined(e_.left.data); + if (side_effects.ok and side_effects.value) { + // "false && dead" + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + e_.right = p.visitExpr(e_.right); + p.is_control_flow_dead = old; + } else { + e_.right = p.visitExpr(e_.right); + } + }, + else => { e_.right = p.visitExpr(e_.right); - } - }, - else => { - e_.right = p.visitExpr(e_.right); - }, - } + }, + } - // Always put constants on the right for equality comparisons to help - // reduce the number of cases we have to check during pattern matching. We - // can only reorder expressions that do not have any side effects. - switch (e_.op) { - .bin_loose_eq, .bin_loose_ne, .bin_strict_eq, .bin_strict_ne => { - if (SideEffects.isPrimitiveToReorder(e_.left.data) and !SideEffects.isPrimitiveToReorder(e_.right.data)) { - const _left = e_.left; - const _right = e_.right; - e_.left = _right; - e_.right = _left; - } - }, - else => {}, - } + // Always put constants on the right for equality comparisons to help + // reduce the number of cases we have to check during pattern matching. We + // can only reorder expressions that do not have any side effects. + switch (e_.op) { + .bin_loose_eq, .bin_loose_ne, .bin_strict_eq, .bin_strict_ne => { + if (SideEffects.isPrimitiveToReorder(e_.left.data) and !SideEffects.isPrimitiveToReorder(e_.right.data)) { + const _left = e_.left; + const _right = e_.right; + e_.left = _right; + e_.right = _left; + } + }, + else => {}, + } - switch (e_.op) { - .bin_comma => { - // notimpl(); - }, - .bin_loose_eq => { - const equality = SideEffects.eql(e_.left.data, e_.right.data, p); - if (equality.ok) { - return p.e( - E.Boolean{ .value = equality.equal }, - expr.loc, - ); - } + switch (e_.op) { + .bin_comma => { + // notimpl(); + }, + .bin_loose_eq => { + const equality = SideEffects.eql(e_.left.data, e_.right.data, p); + if (equality.ok) { + return p.e( + E.Boolean{ .value = equality.equal }, + expr.loc, + ); + } - // const after_op_loc = locAfterOp(e_.); - // TODO: warn about equality check - // TODO: warn about typeof string + // const after_op_loc = locAfterOp(e_.); + // TODO: warn about equality check + // TODO: warn about typeof string - }, - .bin_strict_eq => { - const equality = SideEffects.eql(e_.left.data, e_.right.data, p); - if (equality.ok) { - return p.e(E.Boolean{ .value = equality.equal }, expr.loc); - } + }, + .bin_strict_eq => { + const equality = SideEffects.eql(e_.left.data, e_.right.data, p); + if (equality.ok) { + return p.e(E.Boolean{ .value = equality.equal }, expr.loc); + } - // const after_op_loc = locAfterOp(e_.); - // TODO: warn about equality check - // TODO: warn about typeof string - }, - .bin_loose_ne => { - const equality = SideEffects.eql(e_.left.data, e_.right.data, p); - if (equality.ok) { - return p.e(E.Boolean{ .value = !equality.equal }, expr.loc); - } - // const after_op_loc = locAfterOp(e_.); - // TODO: warn about equality check - // TODO: warn about typeof string + // const after_op_loc = locAfterOp(e_.); + // TODO: warn about equality check + // TODO: warn about typeof string + }, + .bin_loose_ne => { + const equality = SideEffects.eql(e_.left.data, e_.right.data, p); + if (equality.ok) { + return p.e(E.Boolean{ .value = !equality.equal }, expr.loc); + } + // const after_op_loc = locAfterOp(e_.); + // TODO: warn about equality check + // TODO: warn about typeof string - // "x != void 0" => "x != null" - if (@as(Expr.Tag, e_.right.data) == .e_undefined) { - e_.right = p.e(E.Null{}, e_.right.loc); - } - }, - .bin_strict_ne => { - const equality = SideEffects.eql(e_.left.data, e_.right.data, p); - if (equality.ok) { - return p.e(E.Boolean{ .value = !equality.equal }, expr.loc); - } - }, - .bin_nullish_coalescing => { - const nullorUndefined = SideEffects.toNullOrUndefined(e_.left.data); - if (!nullorUndefined.value) { - return e_.left; - } else if (nullorUndefined.side_effects == .no_side_effects) { - // TODO: - // "(null ?? fn)()" => "fn()" - // "(null ?? this.fn)" => "this.fn" - // "(null ?? this.fn)()" => "(0, this.fn)()" + // "x != void 0" => "x != null" + if (@as(Expr.Tag, e_.right.data) == .e_undefined) { + e_.right = p.e(E.Null{}, e_.right.loc); + } + }, + .bin_strict_ne => { + const equality = SideEffects.eql(e_.left.data, e_.right.data, p); + if (equality.ok) { + return p.e(E.Boolean{ .value = !equality.equal }, expr.loc); + } + }, + .bin_nullish_coalescing => { + const nullorUndefined = SideEffects.toNullOrUndefined(e_.left.data); + if (!nullorUndefined.value) { + return e_.left; + } else if (nullorUndefined.side_effects == .no_side_effects) { + // TODO: + // "(null ?? fn)()" => "fn()" + // "(null ?? this.fn)" => "this.fn" + // "(null ?? this.fn)()" => "(0, this.fn)()" - } - }, - .bin_logical_or => { - const side_effects = SideEffects.toBoolean(e_.left.data); - if (side_effects.ok and side_effects.value) { - return e_.left; - } else if (side_effects.ok) { - // TODO: - // "(0 || fn)()" => "fn()" - // "(0 || this.fn)" => "this.fn" - // "(0 || this.fn)()" => "(0, this.fn)()" - } - }, - .bin_logical_and => { - const side_effects = SideEffects.toBoolean(e_.left.data); - if (side_effects.ok) { - return e_.left; - } + } + }, + .bin_logical_or => { + const side_effects = SideEffects.toBoolean(e_.left.data); + if (side_effects.ok and side_effects.value) { + return e_.left; + } else if (side_effects.ok) { + // TODO: + // "(0 || fn)()" => "fn()" + // "(0 || this.fn)" => "this.fn" + // "(0 || this.fn)()" => "(0, this.fn)()" + } + }, + .bin_logical_and => { + const side_effects = SideEffects.toBoolean(e_.left.data); + if (side_effects.ok) { + return e_.left; + } - // TODO: - // "(1 && fn)()" => "fn()" - // "(1 && this.fn)" => "this.fn" - // "(1 && this.fn)()" => "(0, this.fn)()" - }, - .bin_add => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - return p.e(E.Number{ .value = vals[0] + vals[1] }, expr.loc); + // TODO: + // "(1 && fn)()" => "fn()" + // "(1 && this.fn)" => "this.fn" + // "(1 && this.fn)()" => "(0, this.fn)()" + }, + .bin_add => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + return p.e(E.Number{ .value = vals[0] + vals[1] }, expr.loc); + } } - } - // TODO: fold string addition - }, - .bin_sub => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - return p.e(E.Number{ .value = vals[0] - vals[1] }, expr.loc); + // TODO: fold string addition + }, + .bin_sub => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + return p.e(E.Number{ .value = vals[0] - vals[1] }, expr.loc); + } } - } - }, - .bin_mul => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - return p.e(E.Number{ .value = vals[0] * vals[1] }, expr.loc); + }, + .bin_mul => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + return p.e(E.Number{ .value = vals[0] * vals[1] }, expr.loc); + } } - } - }, - .bin_div => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - return p.e(E.Number{ .value = vals[0] / vals[1] }, expr.loc); + }, + .bin_div => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + return p.e(E.Number{ .value = vals[0] / vals[1] }, expr.loc); + } } - } - }, - .bin_rem => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // is this correct? - return p.e(E.Number{ .value = std.math.mod(f64, vals[0], vals[1]) catch 0.0 }, expr.loc); + }, + .bin_rem => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // is this correct? + return p.e(E.Number{ .value = std.math.mod(f64, vals[0], vals[1]) catch 0.0 }, expr.loc); + } } - } - }, - .bin_pow => { - if (p.should_fold_numeric_constants) { - if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - return p.e(E.Number{ .value = std.math.pow(f64, vals[0], vals[1]) }, expr.loc); + }, + .bin_pow => { + if (p.should_fold_numeric_constants) { + if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + return p.e(E.Number{ .value = std.math.pow(f64, vals[0], vals[1]) }, expr.loc); + } } - } - }, - .bin_shl => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) << @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - .bin_shr => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - .bin_u_shr => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - .bin_bitwise_and => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - .bin_bitwise_or => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - .bin_bitwise_xor => { - // TODO: - // if (p.should_fold_numeric_constants) { - // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { - // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); - // } - // } - }, - // --------------------------------------------------------------------------------------------------- - // --------------------------------------------------------------------------------------------------- - // --------------------------------------------------------------------------------------------------- - // --------------------------------------------------------------------------------------------------- - .bin_assign => { + }, + .bin_shl => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) << @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + .bin_shr => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + .bin_u_shr => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + .bin_bitwise_and => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + .bin_bitwise_or => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + .bin_bitwise_xor => { + // TODO: + // if (p.should_fold_numeric_constants) { + // if (Expr.extractNumericValues(e_.left.data, e_.right.data)) |vals| { + // return p.e(E.Number{ .value = ((@floatToInt(i32, vals[0]) >> @floatToInt(u32, vals[1])) & 31) }, expr.loc); + // } + // } + }, + // --------------------------------------------------------------------------------------------------- + // --------------------------------------------------------------------------------------------------- + // --------------------------------------------------------------------------------------------------- + // --------------------------------------------------------------------------------------------------- + .bin_assign => { + + // Optionally preserve the name + if (@as(Expr.Tag, e_.left.data) == .e_identifier) { + e_.right = p.maybeKeepExprSymbolName(e_.right, p.symbols.items[e_.left.getIdentifier().ref.inner_index].original_name, was_anonymous_named_expr); + } + }, + .bin_add_assign => { + // notimpl(); + }, + .bin_sub_assign => { + // notimpl(); + }, + .bin_mul_assign => { + // notimpl(); + }, + .bin_div_assign => { + // notimpl(); + }, + .bin_rem_assign => { + // notimpl(); + }, + .bin_pow_assign => { + // notimpl(); + }, + .bin_shl_assign => { + // notimpl(); + }, + .bin_shr_assign => { + // notimpl(); + }, + .bin_u_shr_assign => { + // notimpl(); + }, + .bin_bitwise_or_assign => { + // notimpl(); + }, + .bin_bitwise_and_assign => { + // notimpl(); + }, + .bin_bitwise_xor_assign => { + // notimpl(); + }, + .bin_nullish_coalescing_assign => { + // notimpl(); + }, + .bin_logical_and_assign => { + // notimpl(); + }, + .bin_logical_or_assign => { + // notimpl(); + }, + else => {}, + } + }, + .e_index => |e_| { + const is_call_target = std.meta.activeTag(p.call_target) == .e_index and expr.data.e_index == p.call_target.e_index; + const is_delete_target = std.meta.activeTag(p.delete_target) == .e_index and expr.data.e_index == p.delete_target.e_index; + + const target = p.visitExprInOut(e_.target, ExprIn{ + // this is awkward due to a zig compiler bug + .has_chain_parent = (e_.optional_chain orelse js_ast.OptionalChain.start) == js_ast.OptionalChain.ccontinue, + }); + e_.target = target; - // Optionally preserve the name - if (@as(Expr.Tag, e_.left.data) == .e_identifier) { - e_.right = p.maybeKeepExprSymbolName(e_.right, p.symbols.items[e_.left.getIdentifier().ref.inner_index].original_name, was_anonymous_named_expr); + if (e_.optional_chain == null and @as(Expr.Tag, e_.index.data) == .e_string) { + if (p.maybeRewritePropertyAccess( + expr.loc, + in.assign_target, + is_delete_target, + e_.target, + e_.index.data.e_string.string(p.allocator) catch unreachable, + e_.index.loc, + is_call_target, + )) |val| { + return val; } - }, - .bin_add_assign => { - // notimpl(); - }, - .bin_sub_assign => { - // notimpl(); - }, - .bin_mul_assign => { - // notimpl(); - }, - .bin_div_assign => { - // notimpl(); - }, - .bin_rem_assign => { - // notimpl(); - }, - .bin_pow_assign => { - // notimpl(); - }, - .bin_shl_assign => { - // notimpl(); - }, - .bin_shr_assign => { - // notimpl(); - }, - .bin_u_shr_assign => { - // notimpl(); - }, - .bin_bitwise_or_assign => { - // notimpl(); - }, - .bin_bitwise_and_assign => { - // notimpl(); - }, - .bin_bitwise_xor_assign => { - // notimpl(); - }, - .bin_nullish_coalescing_assign => { - // notimpl(); - }, - .bin_logical_and_assign => { - // notimpl(); - }, - .bin_logical_or_assign => { - // notimpl(); - }, - else => {}, - } - }, - .e_index => |e_| { - const is_call_target = std.meta.activeTag(p.call_target) == .e_index and expr.data.e_index == p.call_target.e_index; - const is_delete_target = std.meta.activeTag(p.delete_target) == .e_index and expr.data.e_index == p.delete_target.e_index; + } - const target = p.visitExprInOut(e_.target, ExprIn{ - // this is awkward due to a zig compiler bug - .has_chain_parent = (e_.optional_chain orelse js_ast.OptionalChain.start) == js_ast.OptionalChain.ccontinue, - }); - e_.target = target; - - if (e_.optional_chain == null and @as(Expr.Tag, e_.index.data) == .e_string) { - if (p.maybeRewritePropertyAccess( - expr.loc, - in.assign_target, - is_delete_target, - e_.target, - e_.index.data.e_string.string(p.allocator) catch unreachable, - e_.index.loc, - is_call_target, - )) |val| { - return val; - } - } - - // Create an error for assigning to an import namespace when bundling. Even - // though this is a run-time error, we make it a compile-time error when - // bundling because scope hoisting means these will no longer be run-time - // errors. - if ((in.assign_target != .none or is_delete_target) and @as(Expr.Tag, e_.target.data) == .e_identifier and p.symbols.items[e_.target.getIdentifier().ref.inner_index].kind == .import) { - const r = js_lexer.rangeOfIdentifier(p.source, e_.target.loc); - p.log.addRangeErrorFmt( - p.source, - r, - p.allocator, - "Cannot assign to property on import \"{s}\"", - .{p.symbols.items[e_.target.getIdentifier().ref.inner_index].original_name}, - ) catch unreachable; - } + // Create an error for assigning to an import namespace when bundling. Even + // though this is a run-time error, we make it a compile-time error when + // bundling because scope hoisting means these will no longer be run-time + // errors. + if ((in.assign_target != .none or is_delete_target) and @as(Expr.Tag, e_.target.data) == .e_identifier and p.symbols.items[e_.target.getIdentifier().ref.inner_index].kind == .import) { + const r = js_lexer.rangeOfIdentifier(p.source, e_.target.loc); + p.log.addRangeErrorFmt( + p.source, + r, + p.allocator, + "Cannot assign to property on import \"{s}\"", + .{p.symbols.items[e_.target.getIdentifier().ref.inner_index].original_name}, + ) catch unreachable; + } - return p.e(e_, expr.loc); - }, - .e_unary => |e_| { - switch (e_.op) { - .un_typeof => { - e_.value = p.visitExprInOut(e_.value, ExprIn{ .assign_target = e_.op.unaryAssignTarget() }); + return p.e(e_, expr.loc); + }, + .e_unary => |e_| { + switch (e_.op) { + .un_typeof => { + e_.value = p.visitExprInOut(e_.value, ExprIn{ .assign_target = e_.op.unaryAssignTarget() }); - if (SideEffects.toTypeof(e_.value.data)) |typeof| { - return p.e(E.String{ .utf8 = typeof }, expr.loc); - } - }, - .un_delete => { - e_.value = p.visitExprInOut(e_.value, ExprIn{ .has_chain_parent = true }); - }, - else => { - e_.value = p.visitExprInOut(e_.value, ExprIn{ .assign_target = e_.op.unaryAssignTarget() }); + if (SideEffects.toTypeof(e_.value.data)) |typeof| { + return p.e(E.String{ .utf8 = typeof }, expr.loc); + } + }, + .un_delete => { + e_.value = p.visitExprInOut(e_.value, ExprIn{ .has_chain_parent = true }); + }, + else => { + e_.value = p.visitExprInOut(e_.value, ExprIn{ .assign_target = e_.op.unaryAssignTarget() }); - // Post-process the unary expression + // Post-process the unary expression - switch (e_.op) { - .un_not => { - const side_effects = SideEffects.toBoolean(e_.value.data); - if (side_effects.ok) { - return p.e(E.Boolean{ .value = !side_effects.value }, expr.loc); - } + switch (e_.op) { + .un_not => { + const side_effects = SideEffects.toBoolean(e_.value.data); + if (side_effects.ok) { + return p.e(E.Boolean{ .value = !side_effects.value }, expr.loc); + } - // maybe won't do this idk - if (Expr.maybeSimplifyNot(&e_.value, p.allocator)) |exp| { - return exp; - } - }, - .un_void => { - if (p.exprCanBeRemovedIfUnused(&e_.value)) { - return p.e(E.Undefined{}, e_.value.loc); - } - }, - .un_pos => { - if (SideEffects.toNumber(e_.value.data)) |num| { - return p.e(E.Number{ .value = num }, expr.loc); - } - }, - .un_neg => { - if (SideEffects.toNumber(e_.value.data)) |num| { - return p.e(E.Number{ .value = -num }, expr.loc); - } - }, + // maybe won't do this idk + if (Expr.maybeSimplifyNot(&e_.value, p.allocator)) |exp| { + return exp; + } + }, + .un_void => { + if (p.exprCanBeRemovedIfUnused(&e_.value)) { + return p.e(E.Undefined{}, e_.value.loc); + } + }, + .un_pos => { + if (SideEffects.toNumber(e_.value.data)) |num| { + return p.e(E.Number{ .value = num }, expr.loc); + } + }, + .un_neg => { + if (SideEffects.toNumber(e_.value.data)) |num| { + return p.e(E.Number{ .value = -num }, expr.loc); + } + }, - //////////////////////////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////////////////////////// - .un_pre_dec => { - // TODO: private fields - }, - .un_pre_inc => { - // TODO: private fields - }, - .un_post_dec => { - // TODO: private fields - }, - .un_post_inc => { - // TODO: private fields - }, - else => {}, - } - }, - } - }, - .e_dot => |e_| { - const is_delete_target = @as(Expr.Tag, p.delete_target) == .e_dot and expr.data.e_dot == p.delete_target.e_dot; - const is_call_target = @as(Expr.Tag, p.call_target) == .e_dot and expr.data.e_dot == p.call_target.e_dot; - - if (p.define.dots.get(e_.name)) |parts| { - for (parts) |define| { - if (p.isDotDefineMatch(expr, define.parts)) { - // Substitute user-specified defines - if (!define.data.isUndefined()) { - // TODO: check this doesn't crash due to the pointer no longer being allocated - return p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &define.data); + .un_pre_dec => { + // TODO: private fields + }, + .un_pre_inc => { + // TODO: private fields + }, + .un_post_dec => { + // TODO: private fields + }, + .un_post_inc => { + // TODO: private fields + }, + else => {}, } + }, + } + }, + .e_dot => |e_| { + const is_delete_target = @as(Expr.Tag, p.delete_target) == .e_dot and expr.data.e_dot == p.delete_target.e_dot; + const is_call_target = @as(Expr.Tag, p.call_target) == .e_dot and expr.data.e_dot == p.call_target.e_dot; - // Copy the side effect flags over in case this expression is unused - if (define.data.can_be_removed_if_unused) { - e_.can_be_removed_if_unused = true; - } + if (p.define.dots.get(e_.name)) |parts| { + for (parts) |define| { + if (p.isDotDefineMatch(expr, define.parts)) { + // Substitute user-specified defines + if (!define.data.isUndefined()) { + // TODO: check this doesn't crash due to the pointer no longer being allocated + return p.valueForDefine(expr.loc, in.assign_target, is_delete_target, &define.data); + } - if (define.data.call_can_be_unwrapped_if_unused and !p.options.ignore_dce_annotations) { - e_.call_can_be_unwrapped_if_unused = true; - } + // Copy the side effect flags over in case this expression is unused + if (define.data.can_be_removed_if_unused) { + e_.can_be_removed_if_unused = true; + } - break; + if (define.data.call_can_be_unwrapped_if_unused and !p.options.ignore_dce_annotations) { + e_.call_can_be_unwrapped_if_unused = true; + } + + break; + } } } - } - // Track ".then().catch()" chains - if (is_call_target and @as(Expr.Tag, p.then_catch_chain.next_target) == .e_dot and p.then_catch_chain.next_target.e_dot == expr.data.e_dot) { - if (strings.eqlComptime(e_.name, "catch")) { - p.then_catch_chain = ThenCatchChain{ - .next_target = e_.target.data, - .has_catch = true, - }; - } else if (strings.eqlComptime(e_.name, "then")) { - p.then_catch_chain = ThenCatchChain{ - .next_target = e_.target.data, - .has_catch = p.then_catch_chain.has_catch or p.then_catch_chain.has_multiple_args, - }; + // Track ".then().catch()" chains + if (is_call_target and @as(Expr.Tag, p.then_catch_chain.next_target) == .e_dot and p.then_catch_chain.next_target.e_dot == expr.data.e_dot) { + if (strings.eqlComptime(e_.name, "catch")) { + p.then_catch_chain = ThenCatchChain{ + .next_target = e_.target.data, + .has_catch = true, + }; + } else if (strings.eqlComptime(e_.name, "then")) { + p.then_catch_chain = ThenCatchChain{ + .next_target = e_.target.data, + .has_catch = p.then_catch_chain.has_catch or p.then_catch_chain.has_multiple_args, + }; + } } - } - e_.target = p.visitExpr(e_.target); - if (e_.optional_chain == null) { - if (p.maybeRewritePropertyAccess( - expr.loc, - in.assign_target, - is_delete_target, - e_.target, - e_.name, - e_.name_loc, - is_call_target, - )) |_expr| { - return _expr; + e_.target = p.visitExpr(e_.target); + if (e_.optional_chain == null) { + if (p.maybeRewritePropertyAccess( + expr.loc, + in.assign_target, + is_delete_target, + e_.target, + e_.name, + e_.name_loc, + is_call_target, + )) |_expr| { + return _expr; + } } - } - }, - .e_if => |e_| { - const is_call_target = @as(Expr.Data, p.call_target) == .e_if and expr.data.e_if == p.call_target.e_if; + }, + .e_if => |e_| { + const is_call_target = @as(Expr.Data, p.call_target) == .e_if and expr.data.e_if == p.call_target.e_if; - e_.test_ = p.visitExpr(e_.test_); + e_.test_ = p.visitExpr(e_.test_); - e_.test_ = SideEffects.simplifyBoolean(p, e_.test_); + e_.test_ = SideEffects.simplifyBoolean(p, e_.test_); - const side_effects = SideEffects.toBoolean(e_.test_.data); + const side_effects = SideEffects.toBoolean(e_.test_.data); - if (!side_effects.ok) { - e_.yes = p.visitExpr(e_.yes); - e_.no = p.visitExpr(e_.no); - } else { - // Mark the control flow as dead if the branch is never taken - if (side_effects.value) { - // "true ? live : dead" + if (!side_effects.ok) { e_.yes = p.visitExpr(e_.yes); - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; e_.no = p.visitExpr(e_.no); - p.is_control_flow_dead = old; + } else { + // Mark the control flow as dead if the branch is never taken + if (side_effects.value) { + // "true ? live : dead" + e_.yes = p.visitExpr(e_.yes); + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + e_.no = p.visitExpr(e_.no); + p.is_control_flow_dead = old; - // we diverge from esbuild here a little - // esbuild rewrites something like "(a, true) ? b : c" => "a, b" - // we don't do that, since the goal isn't minifying - // though there are some cases where _not_ doing this potentially - // leads to unnecessary imports - if (side_effects.side_effects == .no_side_effects) { + // we diverge from esbuild here a little + // esbuild rewrites something like "(a, true) ? b : c" => "a, b" + // we don't do that, since the goal isn't minifying + // though there are some cases where _not_ doing this potentially + // leads to unnecessary imports + if (side_effects.side_effects == .no_side_effects) { + + // "(1 ? fn : 2)()" => "fn()" + // "(1 ? this.fn : 2)" => "this.fn" + // "(1 ? this.fn : 2)()" => "(0, this.fn)()" + if (is_call_target and e_.yes.hasValueForThisInCall()) { + return p.e(E.Number{ .value = 0 }, e_.test_.loc).joinWithComma(e_.yes, p.allocator); + } - // "(1 ? fn : 2)()" => "fn()" - // "(1 ? this.fn : 2)" => "this.fn" - // "(1 ? this.fn : 2)()" => "(0, this.fn)()" - if (is_call_target and e_.yes.hasValueForThisInCall()) { - return p.e(E.Number{ .value = 0 }, e_.test_.loc).joinWithComma(e_.yes, p.allocator); + return e_.yes; } + } else { + // "false ? dead : live" + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + e_.yes = p.visitExpr(e_.yes); + p.is_control_flow_dead = old; + e_.no = p.visitExpr(e_.no); - return e_.yes; - } - } else { - // "false ? dead : live" - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; - e_.yes = p.visitExpr(e_.yes); - p.is_control_flow_dead = old; - e_.no = p.visitExpr(e_.no); + if (side_effects.side_effects == .no_side_effects) { - if (side_effects.side_effects == .no_side_effects) { + // "(1 ? fn : 2)()" => "fn()" + // "(1 ? this.fn : 2)" => "this.fn" + // "(1 ? this.fn : 2)()" => "(0, this.fn)()" + if (is_call_target and e_.no.hasValueForThisInCall()) { + return p.e(E.Number{ .value = 0 }, e_.test_.loc).joinWithComma(e_.no, p.allocator); + } - // "(1 ? fn : 2)()" => "fn()" - // "(1 ? this.fn : 2)" => "this.fn" - // "(1 ? this.fn : 2)()" => "(0, this.fn)()" - if (is_call_target and e_.no.hasValueForThisInCall()) { - return p.e(E.Number{ .value = 0 }, e_.test_.loc).joinWithComma(e_.no, p.allocator); + return e_.no; } - - return e_.no; } } - } - }, - .e_await => |e_| { - p.await_target = e_.value.data; - e_.value = p.visitExpr(e_.value); - }, - .e_yield => |e_| { - if (e_.value) |val| { - e_.value = p.visitExpr(val); - } - }, - .e_array => |e_| { - if (in.assign_target != .none) { - if (e_.comma_after_spread) |spread| { - p.log.addRangeError(p.source, logger.Range{ .loc = spread, .len = 1 }, "Unexpected \",\" after rest pattern") catch unreachable; - } - } - - var has_spread = false; - for (e_.items) |*item| { - switch (item.data) { - .e_missing => {}, - .e_spread => |spread| { - spread.value = p.visitExprInOut(spread.value, ExprIn{ .assign_target = in.assign_target }); - }, - .e_binary => |e2| { - if (in.assign_target != .none and e2.op == .bin_assign) { - const was_anonymous_named_expr = p.isAnonymousNamedExpr(e2.right); - e2.left = p.visitExprInOut(e2.left, ExprIn{ .assign_target = .replace }); - e2.right = p.visitExpr(e2.right); - - if (@as(Expr.Tag, e2.left.data) == .e_identifier) { - e2.right = p.maybeKeepExprSymbolName( - e2.right, - p.symbols.items[e2.left.data.e_identifier.ref.inner_index].original_name, - was_anonymous_named_expr, - ); - } - } else { - item.* = p.visitExprInOut(item.*, ExprIn{ .assign_target = in.assign_target }); - } - }, - else => { - item.* = p.visitExprInOut(item.*, ExprIn{ .assign_target = in.assign_target }); - }, + }, + .e_await => |e_| { + p.await_target = e_.value.data; + e_.value = p.visitExpr(e_.value); + }, + .e_yield => |e_| { + if (e_.value) |val| { + e_.value = p.visitExpr(val); } - } - }, - .e_object => |e_| { - if (in.assign_target != .none) { - p.maybeCommaSpreadError(e_.comma_after_spread); - } - - var has_spread = false; - var has_proto = false; - for (e_.properties) |*property, i| { - if (property.kind != .spread) { - property.key = p.visitExpr(property.key orelse Global.panic("Expected property key", .{})); - const key = property.key.?; - // Forbid duplicate "__proto__" properties according to the specification - if (!property.flags.is_computed and !property.flags.was_shorthand and !property.flags.is_method and in.assign_target == .none and key.data.isStringValue() and strings.eqlComptime( - // __proto__ is utf8, assume it lives in refs - key.data.e_string.utf8, - "__proto__", - )) { - if (has_proto) { - const r = js_lexer.rangeOfIdentifier(p.source, key.loc); - p.log.addRangeError(p.source, r, "Cannot specify the \"__proto__\" property more than once per object") catch unreachable; - } - has_proto = true; + }, + .e_array => |e_| { + if (in.assign_target != .none) { + if (e_.comma_after_spread) |spread| { + p.log.addRangeError(p.source, logger.Range{ .loc = spread, .len = 1 }, "Unexpected \",\" after rest pattern") catch unreachable; } - } else { - has_spread = true; } - // Extract the initializer for expressions like "({ a: b = c } = d)" - if (in.assign_target != .none and property.initializer != null and property.value != null) { - switch (property.value.?.data) { - .e_binary => |bin| { - if (bin.op == .bin_assign) { - property.initializer = bin.right; - property.value = bin.left; + var has_spread = false; + for (e_.items) |*item| { + switch (item.data) { + .e_missing => {}, + .e_spread => |spread| { + spread.value = p.visitExprInOut(spread.value, ExprIn{ .assign_target = in.assign_target }); + }, + .e_binary => |e2| { + if (in.assign_target != .none and e2.op == .bin_assign) { + const was_anonymous_named_expr = p.isAnonymousNamedExpr(e2.right); + e2.left = p.visitExprInOut(e2.left, ExprIn{ .assign_target = .replace }); + e2.right = p.visitExpr(e2.right); + + if (@as(Expr.Tag, e2.left.data) == .e_identifier) { + e2.right = p.maybeKeepExprSymbolName( + e2.right, + p.symbols.items[e2.left.data.e_identifier.ref.inner_index].original_name, + was_anonymous_named_expr, + ); + } + } else { + item.* = p.visitExprInOut(item.*, ExprIn{ .assign_target = in.assign_target }); } }, - else => {}, + else => { + item.* = p.visitExprInOut(item.*, ExprIn{ .assign_target = in.assign_target }); + }, } } - - if (property.value != null) { - property.value = p.visitExprInOut(property.value.?, ExprIn{ .assign_target = in.assign_target }); + }, + .e_object => |e_| { + if (in.assign_target != .none) { + p.maybeCommaSpreadError(e_.comma_after_spread); } - if (property.initializer != null) { - const was_anonymous_named_expr = p.isAnonymousNamedExpr(property.initializer orelse unreachable); - property.initializer = p.visitExprInOut(property.initializer.?, ExprIn{ .assign_target = in.assign_target }); + var has_spread = false; + var has_proto = false; + for (e_.properties) |*property, i| { + if (property.kind != .spread) { + property.key = p.visitExpr(property.key orelse Global.panic("Expected property key", .{})); + const key = property.key.?; + // Forbid duplicate "__proto__" properties according to the specification + if (!property.flags.is_computed and !property.flags.was_shorthand and !property.flags.is_method and in.assign_target == .none and key.data.isStringValue() and strings.eqlComptime( + // __proto__ is utf8, assume it lives in refs + key.data.e_string.utf8, + "__proto__", + )) { + if (has_proto) { + const r = js_lexer.rangeOfIdentifier(p.source, key.loc); + p.log.addRangeError(p.source, r, "Cannot specify the \"__proto__\" property more than once per object") catch unreachable; + } + has_proto = true; + } + } else { + has_spread = true; + } - if (property.value) |val| { - if (@as(Expr.Tag, val.data) == .e_identifier) { - property.initializer = p.maybeKeepExprSymbolName( - property.initializer orelse unreachable, - p.symbols.items[val.data.e_identifier.ref.inner_index].original_name, - was_anonymous_named_expr, - ); + // Extract the initializer for expressions like "({ a: b = c } = d)" + if (in.assign_target != .none and property.initializer != null and property.value != null) { + switch (property.value.?.data) { + .e_binary => |bin| { + if (bin.op == .bin_assign) { + property.initializer = bin.right; + property.value = bin.left; + } + }, + else => {}, } } - } - } - }, - .e_import => |e_| { - const state = TransposeState{ - .is_await_target = if (p.await_target != null) p.await_target.?.e_import == e_ else false, - .is_then_catch_target = p.then_catch_chain.has_catch and std.meta.activeTag(p.then_catch_chain.next_target) == .e_import and expr.data.e_import == p.then_catch_chain.next_target.e_import, - .loc = e_.expr.loc, - }; - e_.expr = p.visitExpr(e_.expr); - return p.import_transposer.maybeTransposeIf(e_.expr, state); - }, - .e_call => |e_| { - p.call_target = e_.target.data; + if (property.value != null) { + property.value = p.visitExprInOut(property.value.?, ExprIn{ .assign_target = in.assign_target }); + } - p.then_catch_chain = ThenCatchChain{ - .next_target = e_.target.data, - .has_multiple_args = e_.args.len >= 2, - .has_catch = @as(Expr.Tag, p.then_catch_chain.next_target) == .e_call and p.then_catch_chain.next_target.e_call == expr.data.e_call and p.then_catch_chain.has_catch, - }; + if (property.initializer != null) { + const was_anonymous_named_expr = p.isAnonymousNamedExpr(property.initializer orelse unreachable); + property.initializer = p.visitExprInOut(property.initializer.?, ExprIn{ .assign_target = in.assign_target }); - // Prepare to recognize "require.resolve()" calls - // const could_be_require_resolve = (e_.args.len == 1 and @as( - // Expr.Tag, - // e_.target.data, - // ) == .e_dot and e_.target.getDot().optional_chain == null and strings.eql( - // e_.target.dat.e_dot.name, - // "resolve", - // )); - - e_.target = p.visitExprInOut(e_.target, ExprIn{ - .has_chain_parent = (e_.optional_chain orelse js_ast.OptionalChain.start) == .ccontinue, - }); - // TODO: wan about import namespace call - var has_spread = false; - for (e_.args) |*arg| { - arg.* = p.visitExpr(arg.*); - has_spread = has_spread or @as(Expr.Tag, arg.data) == .e_spread; - } - - if (e_.optional_chain == null and @as(Expr.Tag, e_.target.data) == .e_identifier and e_.target.data.e_identifier.ref.eql(p.require_ref)) { - // Heuristic: omit warnings inside try/catch blocks because presumably - // the try/catch statement is there to handle the potential run-time - // error from the unbundled require() call failing. - if (e_.args.len == 1) { - return p.require_transposer.maybeTransposeIf(e_.args[0], null); - } else { - const r = js_lexer.rangeOfIdentifier(p.source, e_.target.loc); - p.log.addRangeDebug(p.source, r, "This call to \"require\" will not be bundled because it has multiple arguments") catch unreachable; + if (property.value) |val| { + if (@as(Expr.Tag, val.data) == .e_identifier) { + property.initializer = p.maybeKeepExprSymbolName( + property.initializer orelse unreachable, + p.symbols.items[val.data.e_identifier.ref.inner_index].original_name, + was_anonymous_named_expr, + ); + } + } + } } - } - - return expr; - }, - .e_new => |e_| { - e_.target = p.visitExpr(e_.target); - // p.warnA - - for (e_.args) |*arg| { - arg.* = p.visitExpr(arg.*); - } - }, - .e_arrow => |e_| { - const old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_visit); - p.fn_or_arrow_data_visit = FnOrArrowDataVisit{ - .is_arrow = true, - .is_async = e_.is_async, - }; - - // Mark if we're inside an async arrow function. This value should be true - // even if we're inside multiple arrow functions and the closest inclosing - // arrow function isn't async, as long as at least one enclosing arrow - // function within the current enclosing function is async. - const old_inside_async_arrow_fn = p.fn_only_data_visit.is_inside_async_arrow_fn; - p.fn_only_data_visit.is_inside_async_arrow_fn = e_.is_async or p.fn_only_data_visit.is_inside_async_arrow_fn; + }, + .e_import => |e_| { + const state = TransposeState{ + .is_await_target = if (p.await_target != null) p.await_target.?.e_import == e_ else false, + .is_then_catch_target = p.then_catch_chain.has_catch and std.meta.activeTag(p.then_catch_chain.next_target) == .e_import and expr.data.e_import == p.then_catch_chain.next_target.e_import, + .loc = e_.expr.loc, + }; - p.pushScopeForVisitPass(.function_args, expr.loc) catch unreachable; - var dupe = p.allocator.dupe(Stmt, e_.body.stmts) catch unreachable; + e_.expr = p.visitExpr(e_.expr); + return p.import_transposer.maybeTransposeIf(e_.expr, state); + }, + .e_call => |e_| { + p.call_target = e_.target.data; - p.visitArgs(e_.args, VisitArgsOpts{ - .has_rest_arg = e_.has_rest_arg, - .body = dupe, - .is_unique_formal_parameters = true, - }); - p.pushScopeForVisitPass(.function_body, e_.body.loc) catch unreachable; + p.then_catch_chain = ThenCatchChain{ + .next_target = e_.target.data, + .has_multiple_args = e_.args.len >= 2, + .has_catch = @as(Expr.Tag, p.then_catch_chain.next_target) == .e_call and p.then_catch_chain.next_target.e_call == expr.data.e_call and p.then_catch_chain.has_catch, + }; - var stmts_list = List(Stmt).fromOwnedSlice(p.allocator, dupe); - var temp_opts = PrependTempRefsOpts{ .kind = StmtsKind.fn_body }; - p.visitStmtsAndPrependTempRefs(&stmts_list, &temp_opts) catch unreachable; - p.allocator.free(e_.body.stmts); - e_.body.stmts = stmts_list.toOwnedSlice(); - p.popScope(); - p.popScope(); + // Prepare to recognize "require.resolve()" calls + // const could_be_require_resolve = (e_.args.len == 1 and @as( + // Expr.Tag, + // e_.target.data, + // ) == .e_dot and e_.target.getDot().optional_chain == null and strings.eql( + // e_.target.dat.e_dot.name, + // "resolve", + // )); + + e_.target = p.visitExprInOut(e_.target, ExprIn{ + .has_chain_parent = (e_.optional_chain orelse js_ast.OptionalChain.start) == .ccontinue, + }); + // TODO: wan about import namespace call + var has_spread = false; + for (e_.args) |*arg| { + arg.* = p.visitExpr(arg.*); + has_spread = has_spread or @as(Expr.Tag, arg.data) == .e_spread; + } + + if (e_.optional_chain == null and @as(Expr.Tag, e_.target.data) == .e_identifier and e_.target.data.e_identifier.ref.eql(p.require_ref)) { + // Heuristic: omit warnings inside try/catch blocks because presumably + // the try/catch statement is there to handle the potential run-time + // error from the unbundled require() call failing. + if (e_.args.len == 1) { + return p.require_transposer.maybeTransposeIf(e_.args[0], null); + } else { + const r = js_lexer.rangeOfIdentifier(p.source, e_.target.loc); + p.log.addRangeDebug(p.source, r, "This call to \"require\" will not be bundled because it has multiple arguments") catch unreachable; + } + } - p.fn_only_data_visit.is_inside_async_arrow_fn = old_inside_async_arrow_fn; - p.fn_or_arrow_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_visit), &old_fn_or_arrow_data); - }, - .e_function => |e_| { - e_.func = p.visitFunc(e_.func, expr.loc); - if (e_.func.name) |name| { - return p.keepExprSymbolName(expr, p.symbols.items[name.ref.?.inner_index].original_name); - } - }, - .e_class => |e_| { + return expr; + }, + .e_new => |e_| { + e_.target = p.visitExpr(e_.target); + // p.warnA - // This might be wrong. - _ = p.visitClass(expr.loc, e_); - }, - else => {}, - } - return expr; - } + for (e_.args) |*arg| { + arg.* = p.visitExpr(arg.*); + } + }, + .e_arrow => |e_| { + const old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_visit); + p.fn_or_arrow_data_visit = FnOrArrowDataVisit{ + .is_arrow = true, + .is_async = e_.is_async, + }; - const VisitArgsOpts = struct { - body: []Stmt = &([_]Stmt{}), - has_rest_arg: bool = false, + // Mark if we're inside an async arrow function. This value should be true + // even if we're inside multiple arrow functions and the closest inclosing + // arrow function isn't async, as long as at least one enclosing arrow + // function within the current enclosing function is async. + const old_inside_async_arrow_fn = p.fn_only_data_visit.is_inside_async_arrow_fn; + p.fn_only_data_visit.is_inside_async_arrow_fn = e_.is_async or p.fn_only_data_visit.is_inside_async_arrow_fn; + + p.pushScopeForVisitPass(.function_args, expr.loc) catch unreachable; + var dupe = p.allocator.dupe(Stmt, e_.body.stmts) catch unreachable; + + p.visitArgs(e_.args, VisitArgsOpts{ + .has_rest_arg = e_.has_rest_arg, + .body = dupe, + .is_unique_formal_parameters = true, + }); + p.pushScopeForVisitPass(.function_body, e_.body.loc) catch unreachable; + + var stmts_list = List(Stmt).fromOwnedSlice(p.allocator, dupe); + var temp_opts = PrependTempRefsOpts{ .kind = StmtsKind.fn_body }; + p.visitStmtsAndPrependTempRefs(&stmts_list, &temp_opts) catch unreachable; + p.allocator.free(e_.body.stmts); + e_.body.stmts = stmts_list.toOwnedSlice(); + p.popScope(); + p.popScope(); - // This is true if the function is an arrow function or a method - is_unique_formal_parameters: bool = false, - }; + p.fn_only_data_visit.is_inside_async_arrow_fn = old_inside_async_arrow_fn; + p.fn_or_arrow_data_visit = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_visit), &old_fn_or_arrow_data); + }, + .e_function => |e_| { + e_.func = p.visitFunc(e_.func, expr.loc); + if (e_.func.name) |name| { + return p.keepExprSymbolName(expr, p.symbols.items[name.ref.?.inner_index].original_name); + } + }, + .e_class => |e_| { - pub fn visitArgs(p: *P, args: []G.Arg, opts: VisitArgsOpts) void { - const strict_loc = fnBodyContainsUseStrict(opts.body); - const has_simple_args = isSimpleParameterList(args, opts.has_rest_arg); - var duplicate_args_check: ?StringBoolMap = null; - // Section 15.2.1 Static Semantics: Early Errors: "It is a Syntax Error if - // FunctionBodyContainsUseStrict of FunctionBody is true and - // IsSimpleParameterList of FormalParameters is false." - if (strict_loc != null and !has_simple_args) { - p.log.addRangeError(p.source, p.source.rangeOfString(strict_loc.?), "Cannot use a \"use strict\" directive in a function with a non-simple parameter list") catch unreachable; + // This might be wrong. + _ = p.visitClass(expr.loc, e_); + }, + else => {}, + } + return expr; } - // Section 15.1.1 Static Semantics: Early Errors: "Multiple occurrences of - // the same BindingIdentifier in a FormalParameterList is only allowed for - // functions which have simple parameter lists and which are not defined in - // strict mode code." - if (opts.is_unique_formal_parameters or strict_loc != null or !has_simple_args or p.isStrictMode()) { - duplicate_args_check = StringBoolMap.init(p.allocator); - } + const VisitArgsOpts = struct { + body: []Stmt = &([_]Stmt{}), + has_rest_arg: bool = false, - var i: usize = 0; - var duplicate_args_check_ptr: ?*StringBoolMap = if (duplicate_args_check != null) &duplicate_args_check.? else null; + // This is true if the function is an arrow function or a method + is_unique_formal_parameters: bool = false, + }; - while (i < args.len) : (i += 1) { - if (args[i].ts_decorators.len > 0) { - args[i].ts_decorators = p.visitTSDecorators(args[i].ts_decorators); + pub fn visitArgs(p: *P, args: []G.Arg, opts: VisitArgsOpts) void { + const strict_loc = fnBodyContainsUseStrict(opts.body); + const has_simple_args = isSimpleParameterList(args, opts.has_rest_arg); + var duplicate_args_check: ?StringBoolMap = null; + // Section 15.2.1 Static Semantics: Early Errors: "It is a Syntax Error if + // FunctionBodyContainsUseStrict of FunctionBody is true and + // IsSimpleParameterList of FormalParameters is false." + if (strict_loc != null and !has_simple_args) { + p.log.addRangeError(p.source, p.source.rangeOfString(strict_loc.?), "Cannot use a \"use strict\" directive in a function with a non-simple parameter list") catch unreachable; } - p.visitBinding(args[i].binding, duplicate_args_check_ptr); - if (args[i].default) |default| { - args[i].default = p.visitExpr(default); + // Section 15.1.1 Static Semantics: Early Errors: "Multiple occurrences of + // the same BindingIdentifier in a FormalParameterList is only allowed for + // functions which have simple parameter lists and which are not defined in + // strict mode code." + if (opts.is_unique_formal_parameters or strict_loc != null or !has_simple_args or p.isStrictMode()) { + duplicate_args_check = StringBoolMap.init(p.allocator); } - } - } - - pub fn visitTSDecorators(p: *P, decs: ExprNodeList) ExprNodeList { - var i: usize = 0; - while (i < decs.len) : (i += 1) { - decs[i] = p.visitExpr(decs[i]); - } - return decs; - } + var i: usize = 0; + var duplicate_args_check_ptr: ?*StringBoolMap = if (duplicate_args_check != null) &duplicate_args_check.? else null; - pub fn keepExprSymbolName(p: *P, _value: Expr, name: string) Expr { - return _value; - // var start = p.expr_list.items.len; - // p.expr_list.ensureUnusedCapacity(2) catch unreachable; - // p.expr_list.appendAssumeCapacity(_value); - // p.expr_list.appendAssumeCapacity(p.e(E.String{ - // .utf8 = name, - // }, _value.loc)); - - // var value = p.callRuntime(_value.loc, "ℹ", p.expr_list.items[start..p.expr_list.items.len]); - // // Make sure tree shaking removes this if the function is never used - // value.getCall().can_be_unwrapped_if_unused = true; - // return value; - } + while (i < args.len) : (i += 1) { + if (args[i].ts_decorators.len > 0) { + args[i].ts_decorators = p.visitTSDecorators(args[i].ts_decorators); + } - pub fn fnBodyContainsUseStrict(body: []Stmt) ?logger.Loc { - for (body) |stmt| { - switch (stmt.data) { - .s_comment => { - continue; - }, - .s_directive => |dir| { - if (strings.utf16EqlString(dir.value, "use strict")) { - return stmt.loc; - } - }, - else => {}, + p.visitBinding(args[i].binding, duplicate_args_check_ptr); + if (args[i].default) |default| { + args[i].default = p.visitExpr(default); + } } } - return null; - } + pub fn visitTSDecorators(p: *P, decs: ExprNodeList) ExprNodeList { + var i: usize = 0; + while (i < decs.len) : (i += 1) { + decs[i] = p.visitExpr(decs[i]); + } - pub fn isSimpleParameterList(args: []G.Arg, has_rest_arg: bool) bool { - if (has_rest_arg) { - return false; + return decs; } - for (args) |arg| { - if (@as(Binding.Tag, arg.binding.data) != .b_identifier or arg.default != null) { - return false; - } - } + pub fn keepExprSymbolName(p: *P, _value: Expr, name: string) Expr { + return _value; + // var start = p.expr_list.items.len; + // p.expr_list.ensureUnusedCapacity(2) catch unreachable; + // p.expr_list.appendAssumeCapacity(_value); + // p.expr_list.appendAssumeCapacity(p.e(E.String{ + // .utf8 = name, + // }, _value.loc)); - return true; - } + // var value = p.callRuntime(_value.loc, "ℹ", p.expr_list.items[start..p.expr_list.items.len]); + // // Make sure tree shaking removes this if the function is never used + // value.getCall().can_be_unwrapped_if_unused = true; + // return value; + } - pub fn classCanBeRemovedIfUnused(p: *P, class: *G.Class) bool { - if (class.extends) |*extends| { - if (!p.exprCanBeRemovedIfUnused(extends)) { - return false; + pub fn fnBodyContainsUseStrict(body: []Stmt) ?logger.Loc { + for (body) |stmt| { + switch (stmt.data) { + .s_comment => { + continue; + }, + .s_directive => |dir| { + if (strings.utf16EqlString(dir.value, "use strict")) { + return stmt.loc; + } + }, + else => {}, + } } + + return null; } - for (class.properties) |*property| { - if (!p.exprCanBeRemovedIfUnused(&(property.key orelse unreachable))) { + pub fn isSimpleParameterList(args: []G.Arg, has_rest_arg: bool) bool { + if (has_rest_arg) { return false; } - if (property.value) |*val| { - if (!p.exprCanBeRemovedIfUnused(val)) { + for (args) |arg| { + if (@as(Binding.Tag, arg.binding.data) != .b_identifier or arg.default != null) { return false; } } - if (property.initializer) |*val| { - if (!p.exprCanBeRemovedIfUnused(val)) { + return true; + } + + pub fn classCanBeRemovedIfUnused(p: *P, class: *G.Class) bool { + if (class.extends) |*extends| { + if (!p.exprCanBeRemovedIfUnused(extends)) { return false; } } - } - - return true; - } - - // TODO: - // When React Fast Refresh is enabled, anything that's a JSX component should not be removable - // This is to improve the reliability of fast refresh between page loads. - pub fn exprCanBeRemovedIfUnused(p: *P, expr: *const Expr) bool { - switch (expr.data) { - .e_null, - .e_undefined, - .e_missing, - .e_boolean, - .e_number, - .e_big_int, - .e_string, - .e_this, - .e_reg_exp, - .e_function, - .e_arrow, - .e_import_meta, - => { - return true; - }, - .e_dot => |ex| { - return ex.can_be_removed_if_unused; - }, - .e_class => |ex| { - return p.classCanBeRemovedIfUnused(ex); - }, - .e_identifier => |ex| { - if (ex.must_keep_due_to_with_stmt) { + for (class.properties) |*property| { + if (!p.exprCanBeRemovedIfUnused(&(property.key orelse unreachable))) { return false; } - // Unbound identifiers cannot be removed because they can have side effects. - // One possible side effect is throwing a ReferenceError if they don't exist. - // Another one is a getter with side effects on the global object: - // - // Object.defineProperty(globalThis, 'x', { - // get() { - // sideEffect(); - // }, - // }); - // - // Be very careful about this possibility. It's tempting to treat all - // identifier expressions as not having side effects but that's wrong. We - // must make sure they have been declared by the code we are currently - // compiling before we can tell that they have no side effects. - // - // Note that we currently ignore ReferenceErrors due to TDZ access. This is - // incorrect but proper TDZ analysis is very complicated and would have to - // be very conservative, which would inhibit a lot of optimizations of code - // inside closures. This may need to be revisited if it proves problematic. - if (ex.can_be_removed_if_unused or p.symbols.items[ex.ref.inner_index].kind != .unbound) { - return true; + if (property.value) |*val| { + if (!p.exprCanBeRemovedIfUnused(val)) { + return false; + } } - }, - .e_import_identifier => |ex| { - // References to an ES6 import item are always side-effect free in an - // ECMAScript environment. - // - // They could technically have side effects if the imported module is a - // CommonJS module and the import item was translated to a property access - // (which esbuild's bundler does) and the property has a getter with side - // effects. - // - // But this is very unlikely and respecting this edge case would mean - // disabling tree shaking of all code that references an export from a - // CommonJS module. It would also likely violate the expectations of some - // developers because the code *looks* like it should be able to be tree - // shaken. - // - // So we deliberately ignore this edge case and always treat import item - // references as being side-effect free. - return true; - }, - .e_if => |ex| { - return p.exprCanBeRemovedIfUnused(&ex.test_) and p.exprCanBeRemovedIfUnused(&ex.yes) and p.exprCanBeRemovedIfUnused(&ex.no); - }, - .e_array => |ex| { - for (ex.items) |*item| { - if (!p.exprCanBeRemovedIfUnused(item)) { + if (property.initializer) |*val| { + if (!p.exprCanBeRemovedIfUnused(val)) { return false; } } + } - return true; - }, - .e_object => |ex| { - for (ex.properties) |*property| { + return true; + } + + // TODO: + // When React Fast Refresh is enabled, anything that's a JSX component should not be removable + // This is to improve the reliability of fast refresh between page loads. + pub fn exprCanBeRemovedIfUnused(p: *P, expr: *const Expr) bool { + switch (expr.data) { + .e_null, + .e_undefined, + .e_missing, + .e_boolean, + .e_number, + .e_big_int, + .e_string, + .e_this, + .e_reg_exp, + .e_function, + .e_arrow, + .e_import_meta, + => { + return true; + }, - // The key must still be evaluated if it's computed or a spread - if (property.kind == .spread or property.flags.is_computed or property.flags.is_spread) { + .e_dot => |ex| { + return ex.can_be_removed_if_unused; + }, + .e_class => |ex| { + return p.classCanBeRemovedIfUnused(ex); + }, + .e_identifier => |ex| { + if (ex.must_keep_due_to_with_stmt) { return false; } - if (property.value) |*val| { - if (!p.exprCanBeRemovedIfUnused(val)) { - return false; - } + // Unbound identifiers cannot be removed because they can have side effects. + // One possible side effect is throwing a ReferenceError if they don't exist. + // Another one is a getter with side effects on the global object: + // + // Object.defineProperty(globalThis, 'x', { + // get() { + // sideEffect(); + // }, + // }); + // + // Be very careful about this possibility. It's tempting to treat all + // identifier expressions as not having side effects but that's wrong. We + // must make sure they have been declared by the code we are currently + // compiling before we can tell that they have no side effects. + // + // Note that we currently ignore ReferenceErrors due to TDZ access. This is + // incorrect but proper TDZ analysis is very complicated and would have to + // be very conservative, which would inhibit a lot of optimizations of code + // inside closures. This may need to be revisited if it proves problematic. + if (ex.can_be_removed_if_unused or p.symbols.items[ex.ref.inner_index].kind != .unbound) { + return true; } - } - return true; - }, - .e_call => |ex| { + }, + .e_import_identifier => |ex| { - // A call that has been marked "__PURE__" can be removed if all arguments - // can be removed. The annotation causes us to ignore the target. - if (ex.can_be_unwrapped_if_unused) { - for (ex.args) |*arg| { - if (!p.exprCanBeRemovedIfUnused(arg)) { + // References to an ES6 import item are always side-effect free in an + // ECMAScript environment. + // + // They could technically have side effects if the imported module is a + // CommonJS module and the import item was translated to a property access + // (which esbuild's bundler does) and the property has a getter with side + // effects. + // + // But this is very unlikely and respecting this edge case would mean + // disabling tree shaking of all code that references an export from a + // CommonJS module. It would also likely violate the expectations of some + // developers because the code *looks* like it should be able to be tree + // shaken. + // + // So we deliberately ignore this edge case and always treat import item + // references as being side-effect free. + return true; + }, + .e_if => |ex| { + return p.exprCanBeRemovedIfUnused(&ex.test_) and p.exprCanBeRemovedIfUnused(&ex.yes) and p.exprCanBeRemovedIfUnused(&ex.no); + }, + .e_array => |ex| { + for (ex.items) |*item| { + if (!p.exprCanBeRemovedIfUnused(item)) { return false; } } - } - return true; - }, - .e_new => |ex| { + return true; + }, + .e_object => |ex| { + for (ex.properties) |*property| { - // A call that has been marked "__PURE__" can be removed if all arguments - // can be removed. The annotation causes us to ignore the target. - if (ex.can_be_unwrapped_if_unused) { - for (ex.args) |*arg| { - if (!p.exprCanBeRemovedIfUnused(arg)) { + // The key must still be evaluated if it's computed or a spread + if (property.kind == .spread or property.flags.is_computed or property.flags.is_spread) { return false; } + + if (property.value) |*val| { + if (!p.exprCanBeRemovedIfUnused(val)) { + return false; + } + } } - } + return true; + }, + .e_call => |ex| { - return true; - }, - .e_unary => |ex| { - switch (ex.op) { - .un_typeof, .un_void, .un_not => { - return p.exprCanBeRemovedIfUnused(&ex.value); - }, - else => {}, - } - }, - .e_binary => |ex| { - switch (ex.op) { - .bin_strict_eq, .bin_strict_ne, .bin_comma, .bin_logical_or, .bin_logical_and, .bin_nullish_coalescing => { - return p.exprCanBeRemovedIfUnused(&ex.left) and p.exprCanBeRemovedIfUnused(&ex.right); - }, - else => {}, - } - }, - else => {}, - } + // A call that has been marked "__PURE__" can be removed if all arguments + // can be removed. The annotation causes us to ignore the target. + if (ex.can_be_unwrapped_if_unused) { + for (ex.args) |*arg| { + if (!p.exprCanBeRemovedIfUnused(arg)) { + return false; + } + } + } - return false; - } + return true; + }, + .e_new => |ex| { - pub fn jsxStringsToMemberExpressionAutomatic(p: *P, loc: logger.Loc) Expr { - return p.jsxStringsToMemberExpression(loc, p.jsx_runtime_ref); - } + // A call that has been marked "__PURE__" can be removed if all arguments + // can be removed. The annotation causes us to ignore the target. + if (ex.can_be_unwrapped_if_unused) { + for (ex.args) |*arg| { + if (!p.exprCanBeRemovedIfUnused(arg)) { + return false; + } + } + } - // If we are currently in a hoisted child of the module scope, relocate these - // declarations to the top level and return an equivalent assignment statement. - // Make sure to check that the declaration kind is "var" before calling this. - // And make sure to check that the returned statement is not the zero value. - // - // This is done to make some transformations non-destructive - // Without relocating vars to the top level, simplifying this: - // if (false) var foo = 1; - // to nothing is unsafe - // Because "foo" was defined. And now it's not. - pub const RelocateVars = struct { - pub const Mode = enum { normal, for_in_or_for_of }; - - stmt: ?Stmt = null, - ok: bool = false, - }; + return true; + }, + .e_unary => |ex| { + switch (ex.op) { + .un_typeof, .un_void, .un_not => { + return p.exprCanBeRemovedIfUnused(&ex.value); + }, + else => {}, + } + }, + .e_binary => |ex| { + switch (ex.op) { + .bin_strict_eq, .bin_strict_ne, .bin_comma, .bin_logical_or, .bin_logical_and, .bin_nullish_coalescing => { + return p.exprCanBeRemovedIfUnused(&ex.left) and p.exprCanBeRemovedIfUnused(&ex.right); + }, + else => {}, + } + }, + else => {}, + } - pub fn maybeRelocateVarsToTopLevel(p: *P, decls: []G.Decl, mode: RelocateVars.Mode) RelocateVars { - // Only do this when the scope is not already top-level and when we're not inside a function. - if (p.current_scope == p.module_scope) { - return .{ .ok = false }; + return false; } - var scope = p.current_scope; - while (!scope.kindStopsHoisting()) { - std.debug.assert(scope.parent != null); - scope = scope.parent.?; + pub fn jsxStringsToMemberExpressionAutomatic(p: *P, loc: logger.Loc) Expr { + return p.jsxStringsToMemberExpression(loc, p.jsx_runtime_ref); } - if (scope != p.module_scope) { - return .{ .ok = false }; - } + // If we are currently in a hoisted child of the module scope, relocate these + // declarations to the top level and return an equivalent assignment statement. + // Make sure to check that the declaration kind is "var" before calling this. + // And make sure to check that the returned statement is not the zero value. + // + // This is done to make some transformations non-destructive + // Without relocating vars to the top level, simplifying this: + // if (false) var foo = 1; + // to nothing is unsafe + // Because "foo" was defined. And now it's not. + pub const RelocateVars = struct { + pub const Mode = enum { normal, for_in_or_for_of }; + + stmt: ?Stmt = null, + ok: bool = false, + }; - var value: Expr = Expr{ .loc = logger.Loc.Empty, .data = Expr.Data{ .e_missing = E.Missing{} } }; - var any_initializers = false; - for (decls) |decl| { - const binding = Binding.toExpr( - &decl.binding, - p.to_expr_wrapper_hoisted, - ); - if (decl.value) |decl_value| { - value = value.joinWithComma(Expr.assign(binding, decl_value, p.allocator), p.allocator); - any_initializers = true; - } else if (mode == .for_in_or_for_of) { - value = value.joinWithComma(binding, p.allocator); + pub fn maybeRelocateVarsToTopLevel(p: *P, decls: []G.Decl, mode: RelocateVars.Mode) RelocateVars { + // Only do this when the scope is not already top-level and when we're not inside a function. + if (p.current_scope == p.module_scope) { + return .{ .ok = false }; } - } - if (std.meta.activeTag(value.data) == .e_missing or !any_initializers) { - return .{ .ok = true }; - } + var scope = p.current_scope; + while (!scope.kindStopsHoisting()) { + std.debug.assert(scope.parent != null); + scope = scope.parent.?; + } - return .{ .stmt = p.s(S.SExpr{ .value = value }, value.loc), .ok = true }; - } + if (scope != p.module_scope) { + return .{ .ok = false }; + } - // EDot nodes represent a property access. This function may return an - // expression to replace the property access with. It assumes that the - // target of the EDot expression has already been visited. - pub fn maybeRewritePropertyAccess( - p: *P, - loc: logger.Loc, - assign_target: js_ast.AssignTarget, - is_delete_target: bool, - target: js_ast.Expr, - name: string, - name_loc: logger.Loc, - is_call_target: bool, - ) ?Expr { - if (@as(Expr.Tag, target.data) == .e_identifier) { - const id = target.data.e_identifier; - - // Rewrite property accesses on explicit namespace imports as an identifier. - // This lets us replace them easily in the printer to rebind them to - // something else without paying the cost of a whole-tree traversal during - // module linking just to rewrite these EDot expressions. - if (p.import_items_for_namespace.get(id.ref)) |*import_items| { - var item: LocRef = LocRef{ .loc = logger.Loc.Empty, .ref = null }; - - if (!import_items.contains(name)) { - item = LocRef{ .loc = name_loc, .ref = p.newSymbol(.import, name) catch unreachable }; - p.module_scope.generated.append(item.ref orelse unreachable) catch unreachable; - - import_items.put(name, item) catch unreachable; - p.is_import_item.put(item.ref orelse unreachable, true) catch unreachable; - - var symbol = p.symbols.items[item.ref.?.inner_index]; - // Mark this as generated in case it's missing. We don't want to - // generate errors for missing import items that are automatically - // generated. - symbol.import_item_status = .generated; - } else { - item = import_items.get(name) orelse unreachable; - } + var value: Expr = Expr{ .loc = logger.Loc.Empty, .data = Expr.Data{ .e_missing = E.Missing{} } }; + var any_initializers = false; + for (decls) |decl| { + const binding = Binding.toExpr( + &decl.binding, + p.to_expr_wrapper_hoisted, + ); + if (decl.value) |decl_value| { + value = value.joinWithComma(Expr.assign(binding, decl_value, p.allocator), p.allocator); + any_initializers = true; + } else if (mode == .for_in_or_for_of) { + value = value.joinWithComma(binding, p.allocator); + } + } + + if (std.meta.activeTag(value.data) == .e_missing or !any_initializers) { + return .{ .ok = true }; + } + + return .{ .stmt = p.s(S.SExpr{ .value = value }, value.loc), .ok = true }; + } + + // EDot nodes represent a property access. This function may return an + // expression to replace the property access with. It assumes that the + // target of the EDot expression has already been visited. + pub fn maybeRewritePropertyAccess( + p: *P, + loc: logger.Loc, + assign_target: js_ast.AssignTarget, + is_delete_target: bool, + target: js_ast.Expr, + name: string, + name_loc: logger.Loc, + is_call_target: bool, + ) ?Expr { + if (@as(Expr.Tag, target.data) == .e_identifier) { + const id = target.data.e_identifier; + + // Rewrite property accesses on explicit namespace imports as an identifier. + // This lets us replace them easily in the printer to rebind them to + // something else without paying the cost of a whole-tree traversal during + // module linking just to rewrite these EDot expressions. + if (p.import_items_for_namespace.get(id.ref)) |*import_items| { + var item: LocRef = LocRef{ .loc = logger.Loc.Empty, .ref = null }; + + if (!import_items.contains(name)) { + item = LocRef{ .loc = name_loc, .ref = p.newSymbol(.import, name) catch unreachable }; + p.module_scope.generated.append(item.ref orelse unreachable) catch unreachable; + + import_items.put(name, item) catch unreachable; + p.is_import_item.put(item.ref orelse unreachable, true) catch unreachable; + + var symbol = p.symbols.items[item.ref.?.inner_index]; + // Mark this as generated in case it's missing. We don't want to + // generate errors for missing import items that are automatically + // generated. + symbol.import_item_status = .generated; + } else { + item = import_items.get(name) orelse unreachable; + } - // Undo the usage count for the namespace itself. This is used later - // to detect whether the namespace symbol has ever been "captured" - // or whether it has just been used to read properties off of. - // - // The benefit of doing this is that if both this module and the - // imported module end up in the same module group and the namespace - // symbol has never been captured, then we don't need to generate - // any code for the namespace at all. - p.ignoreUsage(id.ref); - - // Track how many times we've referenced this symbol - p.recordUsage(item.ref.?); - var ident = p.allocator.create(E.Identifier) catch unreachable; - ident.ref = item.ref.?; - - return p.handleIdentifier(name_loc, ident, name, IdentifierOpts{ - .assign_target = assign_target, - .is_delete_target = is_delete_target, - // If this expression is used as the target of a call expression, make - // sure the value of "this" is preserved. - .was_originally_identifier = false, - }); - } + // Undo the usage count for the namespace itself. This is used later + // to detect whether the namespace symbol has ever been "captured" + // or whether it has just been used to read properties off of. + // + // The benefit of doing this is that if both this module and the + // imported module end up in the same module group and the namespace + // symbol has never been captured, then we don't need to generate + // any code for the namespace at all. + p.ignoreUsage(id.ref); + + // Track how many times we've referenced this symbol + p.recordUsage(item.ref.?); + var ident = p.allocator.create(E.Identifier) catch unreachable; + ident.ref = item.ref.?; + + return p.handleIdentifier(name_loc, ident, name, IdentifierOpts{ + .assign_target = assign_target, + .is_delete_target = is_delete_target, + // If this expression is used as the target of a call expression, make + // sure the value of "this" is preserved. + .was_originally_identifier = false, + }); + } - if (is_call_target and id.ref.eql(p.module_ref) and strings.eqlComptime(name, "require")) { - p.ignoreUsage(p.module_ref); - p.recordUsage(p.require_ref); - return p.e(E.Identifier{ .ref = p.require_ref }, name_loc); - } + if (is_call_target and id.ref.eql(p.module_ref) and strings.eqlComptime(name, "require")) { + p.ignoreUsage(p.module_ref); + p.recordUsage(p.require_ref); + return p.e(E.Identifier{ .ref = p.require_ref }, name_loc); + } - // If this is a known enum value, inline the value of the enum - if (p.options.ts) { - if (p.known_enum_values.get(id.ref)) |enum_value_map| { - if (enum_value_map.get(name)) |enum_value| { - return p.e(E.Number{ .value = enum_value }, loc); + // If this is a known enum value, inline the value of the enum + if (is_typescript_enabled) { + if (p.known_enum_values.get(id.ref)) |enum_value_map| { + if (enum_value_map.get(name)) |enum_value| { + return p.e(E.Number{ .value = enum_value }, loc); + } } } } - } - return null; - } + return null; + } - pub fn ignoreUsage(p: *P, ref: Ref) void { - if (!p.is_control_flow_dead) { - p.symbols.items[ref.inner_index].use_count_estimate = std.math.max(p.symbols.items[ref.inner_index].use_count_estimate, 1) - 1; - var use = p.symbol_uses.get(ref) orelse p.panic("Expected symbol_uses to exist {s}\n{s}", .{ ref, p.symbol_uses }); - use.count_estimate = std.math.max(use.count_estimate, 1) - 1; - if (use.count_estimate == 0) { - _ = p.symbol_uses.remove(ref); - } else { - p.symbol_uses.putAssumeCapacity(ref, use); + pub fn ignoreUsage(p: *P, ref: Ref) void { + if (!p.is_control_flow_dead) { + p.symbols.items[ref.inner_index].use_count_estimate = std.math.max(p.symbols.items[ref.inner_index].use_count_estimate, 1) - 1; + var use = p.symbol_uses.get(ref) orelse p.panic("Expected symbol_uses to exist {s}\n{s}", .{ ref, p.symbol_uses }); + use.count_estimate = std.math.max(use.count_estimate, 1) - 1; + if (use.count_estimate == 0) { + _ = p.symbol_uses.remove(ref); + } else { + p.symbol_uses.putAssumeCapacity(ref, use); + } } - } - // Don't roll back the "tsUseCounts" increment. This must be counted even if - // the value is ignored because that's what the TypeScript compiler does. - } + // Don't roll back the "tsUseCounts" increment. This must be counted even if + // the value is ignored because that's what the TypeScript compiler does. + } - pub fn visitAndAppendStmt(p: *P, stmts: *List(Stmt), stmt: *Stmt) !void { - switch (stmt.data) { - // These don't contain anything to traverse + pub fn visitAndAppendStmt(p: *P, stmts: *List(Stmt), stmt: *Stmt) !void { + switch (stmt.data) { + // These don't contain anything to traverse - .s_debugger, .s_empty, .s_comment => {}, - .s_type_script => |data| { + .s_debugger, .s_empty, .s_comment => {}, + .s_type_script => |data| { - // Erase TypeScript constructs from the output completely - return; - }, - .s_directive => |data| { + // Erase TypeScript constructs from the output completely + return; + }, + .s_directive => |data| { - // if p.isStrictMode() && s.LegacyOctalLoc.Start > 0 { - // p.markStrictModeFeature(legacyOctalEscape, p.source.RangeOfLegacyOctalEscape(s.LegacyOctalLoc), "") - // } - return; - }, - .s_import => |data| { - try p.recordDeclaredSymbol(data.namespace_ref); + // if p.isStrictMode() && s.LegacyOctalLoc.Start > 0 { + // p.markStrictModeFeature(legacyOctalEscape, p.source.RangeOfLegacyOctalEscape(s.LegacyOctalLoc), "") + // } + return; + }, + .s_import => |data| { + try p.recordDeclaredSymbol(data.namespace_ref); - if (data.default_name) |default_name| { - try p.recordDeclaredSymbol(default_name.ref orelse unreachable); - } + if (data.default_name) |default_name| { + try p.recordDeclaredSymbol(default_name.ref orelse unreachable); + } - if (data.items.len > 0) { - for (data.items) |*item| { - try p.recordDeclaredSymbol(item.name.ref orelse unreachable); + if (data.items.len > 0) { + for (data.items) |*item| { + try p.recordDeclaredSymbol(item.name.ref orelse unreachable); + } } - } - }, - .s_export_clause => |data| { + }, + .s_export_clause => |data| { - // "export {foo}" - var end: usize = 0; - for (data.items) |*item| { - const name = p.loadNameFromRef(item.name.ref orelse unreachable); - const symbol = try p.findSymbol(item.alias_loc, name); - const ref = symbol.ref; - - if (p.symbols.items[ref.inner_index].kind == .unbound) { - // Silently strip exports of non-local symbols in TypeScript, since - // those likely correspond to type-only exports. But report exports of - // non-local symbols as errors in JavaScript. - if (!p.options.ts) { - const r = js_lexer.rangeOfIdentifier(p.source, item.name.loc); - try p.log.addRangeErrorFmt(p.source, r, p.allocator, "\"{s}\" is not declared in this file", .{name}); + // "export {foo}" + var end: usize = 0; + for (data.items) |*item| { + const name = p.loadNameFromRef(item.name.ref orelse unreachable); + const symbol = try p.findSymbol(item.alias_loc, name); + const ref = symbol.ref; + + if (p.symbols.items[ref.inner_index].kind == .unbound) { + // Silently strip exports of non-local symbols in TypeScript, since + // those likely correspond to type-only exports. But report exports of + // non-local symbols as errors in JavaScript. + if (!is_typescript_enabled) { + const r = js_lexer.rangeOfIdentifier(p.source, item.name.loc); + try p.log.addRangeErrorFmt(p.source, r, p.allocator, "\"{s}\" is not declared in this file", .{name}); + continue; + } continue; } - continue; + + item.name.ref = ref; + data.items[end] = item.*; + end += 1; } + // esbuild: "Note: do not remove empty export statements since TypeScript uses them as module markers" + // jarred: does that mean we can remove them here, since we're not bundling for production? + data.items = data.items[0..end]; + }, + .s_export_from => |data| { - item.name.ref = ref; - data.items[end] = item.*; - end += 1; - } - // esbuild: "Note: do not remove empty export statements since TypeScript uses them as module markers" - // jarred: does that mean we can remove them here, since we're not bundling for production? - data.items = data.items[0..end]; - }, - .s_export_from => |data| { - - // "export {foo} from 'path'" - const name = p.loadNameFromRef(data.namespace_ref); - data.namespace_ref = try p.newSymbol(.other, name); - try p.current_scope.generated.append(data.namespace_ref); - try p.recordDeclaredSymbol(data.namespace_ref); - - // This is a re-export and the symbols created here are used to reference - for (data.items) |*item| { - const _name = p.loadNameFromRef(item.name.ref orelse unreachable); - const ref = try p.newSymbol(.other, _name); + // "export {foo} from 'path'" + const name = p.loadNameFromRef(data.namespace_ref); + data.namespace_ref = try p.newSymbol(.other, name); try p.current_scope.generated.append(data.namespace_ref); try p.recordDeclaredSymbol(data.namespace_ref); - item.name.ref = ref; - } - }, - .s_export_star => |data| { - - // "export {foo} from 'path'" - const name = p.loadNameFromRef(data.namespace_ref); - data.namespace_ref = try p.newSymbol(.other, name); - try p.current_scope.generated.append(data.namespace_ref); - try p.recordDeclaredSymbol(data.namespace_ref); - - // "export * as ns from 'path'" - if (data.alias) |alias| { - // "import * as ns from 'path'" - // "export {ns}" - - // jarred: For now, just always do this transform. - // because Safari doesn't support it and I've seen cases where this breaks - // TODO: backport unsupportedJSFeatures map - p.recordUsage(data.namespace_ref); - try stmts.ensureCapacity(stmts.items.len + 2); - stmts.appendAssumeCapacity(p.s(S.Import{ .namespace_ref = data.namespace_ref, .star_name_loc = alias.loc, .import_record_index = data.import_record_index }, stmt.loc)); - - var items = try List(js_ast.ClauseItem).initCapacity(p.allocator, 1); - items.appendAssumeCapacity(js_ast.ClauseItem{ .alias = alias.original_name, .original_name = alias.original_name, .alias_loc = alias.loc, .name = LocRef{ .loc = alias.loc, .ref = data.namespace_ref } }); - stmts.appendAssumeCapacity(p.s(S.ExportClause{ .items = items.toOwnedSlice(), .is_single_line = true }, stmt.loc)); - } - }, - .s_export_default => |data| { - if (data.default_name.ref) |ref| { - try p.recordDeclaredSymbol(ref); - } - - switch (data.value) { - .expr => |expr| { - const was_anonymous_named_expr = p.isAnonymousNamedExpr(expr); - data.value.expr = p.visitExpr(expr); - - // // Optionally preserve the name - data.value.expr = p.maybeKeepExprSymbolName(expr, "default", was_anonymous_named_expr); - - // Discard type-only export default statements - if (p.options.ts) { - switch (expr.data) { - .e_identifier => |ident| { - const symbol = p.symbols.items[ident.ref.inner_index]; - if (symbol.kind == .unbound) { - if (p.local_type_names.get(symbol.original_name)) |local_type| { - if (local_type) { - return; + + // This is a re-export and the symbols created here are used to reference + for (data.items) |*item| { + const _name = p.loadNameFromRef(item.name.ref orelse unreachable); + const ref = try p.newSymbol(.other, _name); + try p.current_scope.generated.append(data.namespace_ref); + try p.recordDeclaredSymbol(data.namespace_ref); + item.name.ref = ref; + } + }, + .s_export_star => |data| { + + // "export {foo} from 'path'" + const name = p.loadNameFromRef(data.namespace_ref); + data.namespace_ref = try p.newSymbol(.other, name); + try p.current_scope.generated.append(data.namespace_ref); + try p.recordDeclaredSymbol(data.namespace_ref); + + // "export * as ns from 'path'" + if (data.alias) |alias| { + // "import * as ns from 'path'" + // "export {ns}" + + // jarred: For now, just always do this transform. + // because Safari doesn't support it and I've seen cases where this breaks + // TODO: backport unsupportedJSFeatures map + p.recordUsage(data.namespace_ref); + try stmts.ensureCapacity(stmts.items.len + 2); + stmts.appendAssumeCapacity(p.s(S.Import{ .namespace_ref = data.namespace_ref, .star_name_loc = alias.loc, .import_record_index = data.import_record_index }, stmt.loc)); + + var items = try List(js_ast.ClauseItem).initCapacity(p.allocator, 1); + items.appendAssumeCapacity(js_ast.ClauseItem{ .alias = alias.original_name, .original_name = alias.original_name, .alias_loc = alias.loc, .name = LocRef{ .loc = alias.loc, .ref = data.namespace_ref } }); + stmts.appendAssumeCapacity(p.s(S.ExportClause{ .items = items.toOwnedSlice(), .is_single_line = true }, stmt.loc)); + } + }, + .s_export_default => |data| { + if (data.default_name.ref) |ref| { + try p.recordDeclaredSymbol(ref); + } + + switch (data.value) { + .expr => |expr| { + const was_anonymous_named_expr = p.isAnonymousNamedExpr(expr); + data.value.expr = p.visitExpr(expr); + + // // Optionally preserve the name + data.value.expr = p.maybeKeepExprSymbolName(expr, "default", was_anonymous_named_expr); + + // Discard type-only export default statements + if (is_typescript_enabled) { + switch (expr.data) { + .e_identifier => |ident| { + const symbol = p.symbols.items[ident.ref.inner_index]; + if (symbol.kind == .unbound) { + if (p.local_type_names.get(symbol.original_name)) |local_type| { + if (local_type) { + return; + } } } - } - }, - else => {}, + }, + else => {}, + } } - } - }, + }, - .stmt => |s2| { - switch (s2.data) { - .s_function => |func| { - var name: string = ""; - if (func.func.name) |func_loc| { - name = p.loadNameFromRef(func_loc.ref.?); - } else { - func.func.name = data.default_name; - name = "default"; - } + .stmt => |s2| { + switch (s2.data) { + .s_function => |func| { + var name: string = ""; + if (func.func.name) |func_loc| { + name = p.loadNameFromRef(func_loc.ref.?); + } else { + func.func.name = data.default_name; + name = "default"; + } - func.func = p.visitFunc(func.func, func.func.open_parens_loc); - stmts.append(stmt.*) catch unreachable; + func.func = p.visitFunc(func.func, func.func.open_parens_loc); + stmts.append(stmt.*) catch unreachable; - // if (func.func.name != null and func.func.name.?.ref != null) { - // stmts.append(p.keepStmtSymbolName(func.func.name.?.loc, func.func.name.?.ref.?, name)) catch unreachable; - // } - // prevent doubling export default function name - return; - }, - .s_class => |class| { - var shadow_ref = p.visitClass(s2.loc, &class.class); - stmts.appendSlice(p.lowerClass(js_ast.StmtOrExpr{ .stmt = stmt.* }, shadow_ref)) catch unreachable; - return; - }, - else => {}, - } - }, - } - }, - .s_export_equals => |data| { + // if (func.func.name != null and func.func.name.?.ref != null) { + // stmts.append(p.keepStmtSymbolName(func.func.name.?.loc, func.func.name.?.ref.?, name)) catch unreachable; + // } + // prevent doubling export default function name + return; + }, + .s_class => |class| { + var shadow_ref = p.visitClass(s2.loc, &class.class); + stmts.appendSlice(p.lowerClass(js_ast.StmtOrExpr{ .stmt = stmt.* }, shadow_ref)) catch unreachable; + return; + }, + else => {}, + } + }, + } + }, + .s_export_equals => |data| { - // "module.exports = value" - stmts.append( - Expr.assignStmt( - p.e( - E.Dot{ - .target = p.e( - E.Identifier{ - .ref = p.module_ref, - }, - stmt.loc, - ), - .name = "exports", - .name_loc = stmt.loc, - }, - stmt.loc, + // "module.exports = value" + stmts.append( + Expr.assignStmt( + p.e( + E.Dot{ + .target = p.e( + E.Identifier{ + .ref = p.module_ref, + }, + stmt.loc, + ), + .name = "exports", + .name_loc = stmt.loc, + }, + stmt.loc, + ), + p.visitExpr(data.value), + p.allocator, ), - p.visitExpr(data.value), - p.allocator, - ), - ) catch unreachable; - p.recordUsage(p.module_ref); - }, - .s_break => |data| { - if (data.label) |*label| { - const name = p.loadNameFromRef(label.ref orelse p.panic("Expected label to have a ref", .{})); - const res = p.findLabelSymbol(label.loc, name); - if (res.found) { - label.ref = res.ref; - } else { - data.label = null; - } - } else if (!p.fn_or_arrow_data_visit.is_inside_loop and !p.fn_or_arrow_data_visit.is_inside_switch) { - const r = js_lexer.rangeOfIdentifier(p.source, stmt.loc); - p.log.addRangeError(p.source, r, "Cannot use \"break\" here") catch unreachable; - } - }, - .s_continue => |data| { - if (data.label) |*label| { - const name = p.loadNameFromRef(label.ref orelse p.panic("Expected continue label to have a ref", .{})); - const res = p.findLabelSymbol(label.loc, name); - label.ref = res.ref; - if (res.found and !res.is_loop) { + ) catch unreachable; + p.recordUsage(p.module_ref); + }, + .s_break => |data| { + if (data.label) |*label| { + const name = p.loadNameFromRef(label.ref orelse p.panic("Expected label to have a ref", .{})); + const res = p.findLabelSymbol(label.loc, name); + if (res.found) { + label.ref = res.ref; + } else { + data.label = null; + } + } else if (!p.fn_or_arrow_data_visit.is_inside_loop and !p.fn_or_arrow_data_visit.is_inside_switch) { const r = js_lexer.rangeOfIdentifier(p.source, stmt.loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot \"continue\" to label {s}", .{name}) catch unreachable; + p.log.addRangeError(p.source, r, "Cannot use \"break\" here") catch unreachable; } - } else if (!p.fn_or_arrow_data_visit.is_inside_loop) { - const r = js_lexer.rangeOfIdentifier(p.source, stmt.loc); - p.log.addRangeError(p.source, r, "Cannot use \"continue\" here") catch unreachable; - } - }, - .s_label => |data| { - p.pushScopeForVisitPass(.label, stmt.loc) catch unreachable; - const name = p.loadNameFromRef(data.name.ref orelse unreachable); - const ref = p.newSymbol(.label, name) catch unreachable; - data.name.ref = ref; - p.current_scope.label_ref = ref; - switch (data.stmt.data) { - .s_for, .s_for_in, .s_for_of, .s_while, .s_do_while => { - p.current_scope.label_stmt_is_loop = true; - }, - else => {}, - } - - data.stmt = p.visitSingleStmt(data.stmt, StmtsKind.none); - p.popScope(); - }, - .s_local => |data| { - for (data.decls) |*d| { - p.visitBinding(d.binding, null); - - if (d.value != null) { - var val = d.value orelse unreachable; - const was_anonymous_named_expr = p.isAnonymousNamedExpr(val); - - val = p.visitExpr(val); - // go version of defer would cause this to reset the variable - // zig version of defer causes this to set it to the last value of val, at the end of the scope. - d.value = val; - - // Optionally preserve the name - switch (d.binding.data) { - .b_identifier => |id| { - val = p.maybeKeepExprSymbolName( - val, - p.symbols.items[id.ref.inner_index].original_name, - was_anonymous_named_expr, - ); - }, - else => {}, + }, + .s_continue => |data| { + if (data.label) |*label| { + const name = p.loadNameFromRef(label.ref orelse p.panic("Expected continue label to have a ref", .{})); + const res = p.findLabelSymbol(label.loc, name); + label.ref = res.ref; + if (res.found and !res.is_loop) { + const r = js_lexer.rangeOfIdentifier(p.source, stmt.loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "Cannot \"continue\" to label {s}", .{name}) catch unreachable; } + } else if (!p.fn_or_arrow_data_visit.is_inside_loop) { + const r = js_lexer.rangeOfIdentifier(p.source, stmt.loc); + p.log.addRangeError(p.source, r, "Cannot use \"continue\" here") catch unreachable; + } + }, + .s_label => |data| { + p.pushScopeForVisitPass(.label, stmt.loc) catch unreachable; + const name = p.loadNameFromRef(data.name.ref orelse unreachable); + const ref = p.newSymbol(.label, name) catch unreachable; + data.name.ref = ref; + p.current_scope.label_ref = ref; + switch (data.stmt.data) { + .s_for, .s_for_in, .s_for_of, .s_while, .s_do_while => { + p.current_scope.label_stmt_is_loop = true; + }, + else => {}, } - } - // Handle being exported inside a namespace - if (data.is_export and p.enclosing_namespace_arg_ref != null) { + data.stmt = p.visitSingleStmt(data.stmt, StmtsKind.none); + p.popScope(); + }, + .s_local => |data| { for (data.decls) |*d| { - if (d.value) |val| { - p.recordUsage((p.enclosing_namespace_arg_ref orelse unreachable)); - // TODO: is it necessary to lowerAssign? why does esbuild do it _most_ of the time? - stmts.append(p.s(S.SExpr{ - .value = Expr.assign(Binding.toExpr(&d.binding, p.to_expr_wrapper_namespace), val, p.allocator), - }, stmt.loc)) catch unreachable; + p.visitBinding(d.binding, null); + + if (d.value != null) { + var val = d.value orelse unreachable; + const was_anonymous_named_expr = p.isAnonymousNamedExpr(val); + + val = p.visitExpr(val); + // go version of defer would cause this to reset the variable + // zig version of defer causes this to set it to the last value of val, at the end of the scope. + d.value = val; + + // Optionally preserve the name + switch (d.binding.data) { + .b_identifier => |id| { + val = p.maybeKeepExprSymbolName( + val, + p.symbols.items[id.ref.inner_index].original_name, + was_anonymous_named_expr, + ); + }, + else => {}, + } } } - return; - } - - // We must relocate vars in order to safely handle removing if/else depending on NODE_ENV. - if (data.kind == .k_var) { - const relocated = p.maybeRelocateVarsToTopLevel(data.decls, .normal); - if (relocated.ok) { - if (relocated.stmt) |new_stmt| { - stmts.append(new_stmt) catch unreachable; + // Handle being exported inside a namespace + if (data.is_export and p.enclosing_namespace_arg_ref != null) { + for (data.decls) |*d| { + if (d.value) |val| { + p.recordUsage((p.enclosing_namespace_arg_ref orelse unreachable)); + // TODO: is it necessary to lowerAssign? why does esbuild do it _most_ of the time? + stmts.append(p.s(S.SExpr{ + .value = Expr.assign(Binding.toExpr(&d.binding, p.to_expr_wrapper_namespace), val, p.allocator), + }, stmt.loc)) catch unreachable; + } } return; } - } - }, - .s_expr => |data| { - p.stmt_expr_value = data.value.data; - data.value = p.visitExpr(data.value); - // simplify unused - data.value = SideEffects.simpifyUnusedExpr(p, data.value) orelse data.value.toEmpty(); - }, - .s_throw => |data| { - data.value = p.visitExpr(data.value); - }, - .s_return => |data| { - - // Forbid top-level return inside modules with ECMAScript-style exports - if (p.fn_or_arrow_data_visit.is_outside_fn_or_arrow) { - const where = where: { - if (p.es6_export_keyword.len > 0) { - break :where p.es6_export_keyword; - } else if (p.top_level_await_keyword.len > 0) { - break :where p.top_level_await_keyword; - } else { - break :where logger.Range.None; - } - }; - if (where.len > 0) { - p.log.addRangeError(p.source, where, "Top-level return cannot be used inside an ECMAScript module") catch unreachable; + // We must relocate vars in order to safely handle removing if/else depending on NODE_ENV. + if (data.kind == .k_var) { + const relocated = p.maybeRelocateVarsToTopLevel(data.decls, .normal); + if (relocated.ok) { + if (relocated.stmt) |new_stmt| { + stmts.append(new_stmt) catch unreachable; + } + + return; + } } - } + }, + .s_expr => |data| { + p.stmt_expr_value = data.value.data; + data.value = p.visitExpr(data.value); + // simplify unused + data.value = SideEffects.simpifyUnusedExpr(p, data.value) orelse data.value.toEmpty(); + }, + .s_throw => |data| { + data.value = p.visitExpr(data.value); + }, + .s_return => |data| { - if (data.value) |val| { - data.value = p.visitExpr(val); + // Forbid top-level return inside modules with ECMAScript-style exports + if (p.fn_or_arrow_data_visit.is_outside_fn_or_arrow) { + const where = where: { + if (p.es6_export_keyword.len > 0) { + break :where p.es6_export_keyword; + } else if (p.top_level_await_keyword.len > 0) { + break :where p.top_level_await_keyword; + } else { + break :where logger.Range.None; + } + }; - // "return undefined;" can safely just always be "return;" - if (data.value != null and @as(Expr.Tag, data.value.?.data) == .e_undefined) { - // Returning undefined is implicit - data.value = null; + if (where.len > 0) { + p.log.addRangeError(p.source, where, "Top-level return cannot be used inside an ECMAScript module") catch unreachable; + } } - } - }, - .s_block => |data| { - { - p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; - // Pass the "is loop body" status on to the direct children of a block used - // as a loop body. This is used to enable optimizations specific to the - // topmost scope in a loop body block. - const kind = if (std.meta.eql(p.loop_body, stmt.data)) StmtsKind.loop_body else StmtsKind.none; - var _stmts = List(Stmt).fromOwnedSlice(p.allocator, data.stmts); - p.visitStmts(&_stmts, kind) catch unreachable; - data.stmts = _stmts.toOwnedSlice(); - p.popScope(); - } + if (data.value) |val| { + data.value = p.visitExpr(val); - // // trim empty statements - if (data.stmts.len == 0) { - stmts.append(Stmt{ .data = Prefill.Data.SEmpty, .loc = stmt.loc }) catch unreachable; - return; - } else if (data.stmts.len == 1 and !statementCaresAboutScope(data.stmts[0])) { - // Unwrap blocks containing a single statement - stmts.append(data.stmts[0]) catch unreachable; + // "return undefined;" can safely just always be "return;" + if (data.value != null and @as(Expr.Tag, data.value.?.data) == .e_undefined) { + // Returning undefined is implicit + data.value = null; + } + } + }, + .s_block => |data| { + { + p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; + + // Pass the "is loop body" status on to the direct children of a block used + // as a loop body. This is used to enable optimizations specific to the + // topmost scope in a loop body block. + const kind = if (std.meta.eql(p.loop_body, stmt.data)) StmtsKind.loop_body else StmtsKind.none; + var _stmts = List(Stmt).fromOwnedSlice(p.allocator, data.stmts); + p.visitStmts(&_stmts, kind) catch unreachable; + data.stmts = _stmts.toOwnedSlice(); + p.popScope(); + } + + // // trim empty statements + if (data.stmts.len == 0) { + stmts.append(Stmt{ .data = Prefill.Data.SEmpty, .loc = stmt.loc }) catch unreachable; + return; + } else if (data.stmts.len == 1 and !statementCaresAboutScope(data.stmts[0])) { + // Unwrap blocks containing a single statement + stmts.append(data.stmts[0]) catch unreachable; + return; + } + stmts.append(stmt.*) catch unreachable; return; - } - stmts.append(stmt.*) catch unreachable; - return; - }, - .s_with => |data| { - notimpl(); - }, - .s_while => |data| { - data.test_ = p.visitExpr(data.test_); - data.body = p.visitLoopBody(data.body); + }, + .s_with => |data| { + notimpl(); + }, + .s_while => |data| { + data.test_ = p.visitExpr(data.test_); + data.body = p.visitLoopBody(data.body); - // TODO: simplify boolean expression - }, - .s_do_while => |data| { - data.test_ = p.visitExpr(data.test_); - data.body = p.visitLoopBody(data.body); + // TODO: simplify boolean expression + }, + .s_do_while => |data| { + data.test_ = p.visitExpr(data.test_); + data.body = p.visitLoopBody(data.body); - // TODO: simplify boolean expression - }, - .s_if => |data| { - data.test_ = SideEffects.simplifyBoolean(p, p.visitExpr(data.test_)); - - const effects = SideEffects.toBoolean(data.test_.data); - if (effects.ok and !effects.value) { - const old = p.is_control_flow_dead; - p.is_control_flow_dead = true; - data.yes = p.visitSingleStmt(data.yes, StmtsKind.none); - p.is_control_flow_dead = old; - } else { - data.yes = p.visitSingleStmt(data.yes, StmtsKind.none); - } + // TODO: simplify boolean expression + }, + .s_if => |data| { + data.test_ = SideEffects.simplifyBoolean(p, p.visitExpr(data.test_)); - // The "else" clause is optional - if (data.no) |no| { - if (effects.ok and effects.value) { + const effects = SideEffects.toBoolean(data.test_.data); + if (effects.ok and !effects.value) { const old = p.is_control_flow_dead; p.is_control_flow_dead = true; - defer p.is_control_flow_dead = old; - data.no = p.visitSingleStmt(no, .none); + data.yes = p.visitSingleStmt(data.yes, StmtsKind.none); + p.is_control_flow_dead = old; } else { - data.no = p.visitSingleStmt(no, .none); + data.yes = p.visitSingleStmt(data.yes, StmtsKind.none); } - // Trim unnecessary "else" clauses - if (data.no != null and @as(Stmt.Tag, data.no.?.data) == .s_empty) { - data.no = null; + // The "else" clause is optional + if (data.no) |no| { + if (effects.ok and effects.value) { + const old = p.is_control_flow_dead; + p.is_control_flow_dead = true; + defer p.is_control_flow_dead = old; + data.no = p.visitSingleStmt(no, .none); + } else { + data.no = p.visitSingleStmt(no, .none); + } + + // Trim unnecessary "else" clauses + if (data.no != null and @as(Stmt.Tag, data.no.?.data) == .s_empty) { + data.no = null; + } } - } - if (effects.ok) { - if (effects.value) { - if (data.no == null or !SideEffects.shouldKeepStmtInDeadControlFlow(data.no.?)) { - if (effects.side_effects == .could_have_side_effects) { - // Keep the condition if it could have side effects (but is still known to be truthy) - if (SideEffects.simpifyUnusedExpr(p, data.test_)) |test_| { - stmts.append(p.s(S.SExpr{ .value = test_ }, test_.loc)) catch unreachable; + if (effects.ok) { + if (effects.value) { + if (data.no == null or !SideEffects.shouldKeepStmtInDeadControlFlow(data.no.?)) { + if (effects.side_effects == .could_have_side_effects) { + // Keep the condition if it could have side effects (but is still known to be truthy) + if (SideEffects.simpifyUnusedExpr(p, data.test_)) |test_| { + stmts.append(p.s(S.SExpr{ .value = test_ }, test_.loc)) catch unreachable; + } } - } - return try p.appendIfBodyPreservingScope(stmts, data.yes); + return try p.appendIfBodyPreservingScope(stmts, data.yes); + } else { + // We have to keep the "no" branch + } } else { - // We have to keep the "no" branch - } - } else { - // The test is falsy - if (!SideEffects.shouldKeepStmtInDeadControlFlow(data.yes)) { - if (effects.side_effects == .could_have_side_effects) { - // Keep the condition if it could have side effects (but is still known to be truthy) - if (SideEffects.simpifyUnusedExpr(p, data.test_)) |test_| { - stmts.append(p.s(S.SExpr{ .value = test_ }, test_.loc)) catch unreachable; + // The test is falsy + if (!SideEffects.shouldKeepStmtInDeadControlFlow(data.yes)) { + if (effects.side_effects == .could_have_side_effects) { + // Keep the condition if it could have side effects (but is still known to be truthy) + if (SideEffects.simpifyUnusedExpr(p, data.test_)) |test_| { + stmts.append(p.s(S.SExpr{ .value = test_ }, test_.loc)) catch unreachable; + } } - } - // if (false) { - // } - if (data.no == null) { - return; - } + // if (false) { + // } + if (data.no == null) { + return; + } - return try p.appendIfBodyPreservingScope(stmts, data.no.?); + return try p.appendIfBodyPreservingScope(stmts, data.no.?); + } } } - } - }, - .s_for => |data| { - { - p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; + }, + .s_for => |data| { + { + p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; - if (data.init) |initst| { - data.init = p.visitForLoopInit(initst, false); - } + if (data.init) |initst| { + data.init = p.visitForLoopInit(initst, false); + } - if (data.test_) |test_| { - data.test_ = p.visitExpr(test_); + if (data.test_) |test_| { + data.test_ = p.visitExpr(test_); - // TODO: boolean with side effects - } + // TODO: boolean with side effects + } - if (data.update) |update| { - data.update = p.visitExpr(update); - } + if (data.update) |update| { + data.update = p.visitExpr(update); + } - data.body = p.visitLoopBody(data.body); - p.popScope(); - } - // TODO: Potentially relocate "var" declarations to the top level + data.body = p.visitLoopBody(data.body); + p.popScope(); + } + // TODO: Potentially relocate "var" declarations to the top level - }, - .s_for_in => |data| { - { + }, + .s_for_in => |data| { + { + p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; + defer p.popScope(); + _ = p.visitForLoopInit(data.init, true); + data.value = p.visitExpr(data.value); + data.body = p.visitLoopBody(data.body); + + // TODO: do we need to this? + // // Check for a variable initializer + // if local, ok := s.Init.Data.(*js_ast.SLocal); ok && local.Kind == js_ast.LocalVar && len(local.Decls) == 1 { + // decl := &local.Decls[0] + // if id, ok := decl.Binding.Data.(*js_ast.BIdentifier); ok && decl.Value != nil { + // p.markStrictModeFeature(forInVarInit, p.source.RangeOfOperatorBefore(decl.Value.Loc, "="), "") + + // // Lower for-in variable initializers in case the output is used in strict mode + // stmts = append(stmts, js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SExpr{Value: js_ast.Assign( + // js_ast.Expr{Loc: decl.Binding.Loc, Data: &js_ast.EIdentifier{Ref: id.Ref}}, + // *decl.Value, + // )}}) + // decl.Value = nil + // } + // } + } + }, + .s_for_of => |data| { p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; defer p.popScope(); _ = p.visitForLoopInit(data.init, true); data.value = p.visitExpr(data.value); data.body = p.visitLoopBody(data.body); - // TODO: do we need to this? - // // Check for a variable initializer - // if local, ok := s.Init.Data.(*js_ast.SLocal); ok && local.Kind == js_ast.LocalVar && len(local.Decls) == 1 { - // decl := &local.Decls[0] - // if id, ok := decl.Binding.Data.(*js_ast.BIdentifier); ok && decl.Value != nil { - // p.markStrictModeFeature(forInVarInit, p.source.RangeOfOperatorBefore(decl.Value.Loc, "="), "") - - // // Lower for-in variable initializers in case the output is used in strict mode - // stmts = append(stmts, js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SExpr{Value: js_ast.Assign( - // js_ast.Expr{Loc: decl.Binding.Loc, Data: &js_ast.EIdentifier{Ref: id.Ref}}, - // *decl.Value, - // )}}) - // decl.Value = nil + // TODO: do we need to do this? + // // Potentially relocate "var" declarations to the top level + // if init, ok := s.Init.Data.(*js_ast.SLocal); ok && init.Kind == js_ast.LocalVar { + // if replacement, ok := p.maybeRelocateVarsToTopLevel(init.Decls, relocateVarsForInOrForOf); ok { + // s.Init = replacement // } // } - } - }, - .s_for_of => |data| { - p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; - defer p.popScope(); - _ = p.visitForLoopInit(data.init, true); - data.value = p.visitExpr(data.value); - data.body = p.visitLoopBody(data.body); - - // TODO: do we need to do this? - // // Potentially relocate "var" declarations to the top level - // if init, ok := s.Init.Data.(*js_ast.SLocal); ok && init.Kind == js_ast.LocalVar { - // if replacement, ok := p.maybeRelocateVarsToTopLevel(init.Decls, relocateVarsForInOrForOf); ok { - // s.Init = replacement - // } - // } - // p.lowerObjectRestInForLoopInit(s.Init, &s.Body) - }, - .s_try => |data| { - p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; - { - var _stmts = List(Stmt).fromOwnedSlice(p.allocator, data.body); - p.fn_or_arrow_data_visit.try_body_count += 1; - p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; - p.fn_or_arrow_data_visit.try_body_count -= 1; - data.body = _stmts.toOwnedSlice(); - } - p.popScope(); - - if (data.catch_) |*catch_| { - p.pushScopeForVisitPass(.block, catch_.loc) catch unreachable; + // p.lowerObjectRestInForLoopInit(s.Init, &s.Body) + }, + .s_try => |data| { + p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; { - if (catch_.binding != null) { - p.visitBinding(catch_.binding.?, null); - } - var _stmts = List(Stmt).fromOwnedSlice(p.allocator, catch_.body); + var _stmts = List(Stmt).fromOwnedSlice(p.allocator, data.body); + p.fn_or_arrow_data_visit.try_body_count += 1; p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; - catch_.body = _stmts.toOwnedSlice(); + p.fn_or_arrow_data_visit.try_body_count -= 1; + data.body = _stmts.toOwnedSlice(); } p.popScope(); - } - if (data.finally) |*finally| { - p.pushScopeForVisitPass(.block, finally.loc) catch unreachable; - { - var _stmts = List(Stmt).fromOwnedSlice(p.allocator, finally.stmts); - p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; - finally.stmts = _stmts.toOwnedSlice(); - } - p.popScope(); - } - }, - .s_switch => |data| { - data.test_ = p.visitExpr(data.test_); - { - p.pushScopeForVisitPass(.block, data.body_loc) catch unreachable; - defer p.popScope(); - var old_is_inside_Swsitch = p.fn_or_arrow_data_visit.is_inside_switch; - p.fn_or_arrow_data_visit.is_inside_switch = true; - defer p.fn_or_arrow_data_visit.is_inside_switch = old_is_inside_Swsitch; - var i: usize = 0; - while (i < data.cases.len) : (i += 1) { - const case = data.cases[i]; - if (case.value) |val| { - data.cases[i].value = p.visitExpr(val); - // TODO: error messages - // Check("case", *c.Value, c.Value.Loc) - // p.warnAboutTypeofAndString(s.Test, *c.Value) - } - var _stmts = List(Stmt).fromOwnedSlice(p.allocator, case.body); - p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; - data.cases[i].body = _stmts.toOwnedSlice(); + if (data.catch_) |*catch_| { + p.pushScopeForVisitPass(.block, catch_.loc) catch unreachable; + { + if (catch_.binding != null) { + p.visitBinding(catch_.binding.?, null); + } + var _stmts = List(Stmt).fromOwnedSlice(p.allocator, catch_.body); + p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; + catch_.body = _stmts.toOwnedSlice(); + } + p.popScope(); } - } - // TODO: duplicate case checker - }, - .s_function => |data| { - data.func = p.visitFunc(data.func, data.func.open_parens_loc); - - // Handle exporting this function from a namespace - if (data.func.flags.is_export and p.enclosing_namespace_arg_ref != null) { - data.func.flags.is_export = false; - - const enclosing_namespace_arg_ref = p.enclosing_namespace_arg_ref orelse unreachable; - stmts.ensureUnusedCapacity(3) catch unreachable; - stmts.appendAssumeCapacity(stmt.*); - // i wonder if this will crash - stmts.appendAssumeCapacity(Expr.assignStmt(p.e(E.Dot{ - .target = p.e(E.Identifier{ .ref = enclosing_namespace_arg_ref }, stmt.loc), - .name = p.loadNameFromRef(data.func.name.?.ref.?), - .name_loc = data.func.name.?.loc, - }, stmt.loc), p.e(E.Identifier{ .ref = data.func.name.?.ref.? }, data.func.name.?.loc), p.allocator)); - } else { - stmts.ensureUnusedCapacity(2) catch unreachable; - stmts.appendAssumeCapacity(stmt.*); - } - - // stmts.appendAssumeCapacity( - // // i wonder if this will crash - // p.keepStmtSymbolName( - // data.func.name.?.loc, - // data.func.name.?.ref.?, - // p.symbols.items[data.func.name.?.ref.?.inner_index].original_name, - // ), - // ); - return; - }, - .s_class => |data| { - const shadow_ref = p.visitClass(stmt.loc, &data.class); - - // Remove the export flag inside a namespace - const was_export_inside_namespace = data.is_export and p.enclosing_namespace_arg_ref != null; - if (was_export_inside_namespace) { - data.is_export = false; - } + if (data.finally) |*finally| { + p.pushScopeForVisitPass(.block, finally.loc) catch unreachable; + { + var _stmts = List(Stmt).fromOwnedSlice(p.allocator, finally.stmts); + p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; + finally.stmts = _stmts.toOwnedSlice(); + } + p.popScope(); + } + }, + .s_switch => |data| { + data.test_ = p.visitExpr(data.test_); + { + p.pushScopeForVisitPass(.block, data.body_loc) catch unreachable; + defer p.popScope(); + var old_is_inside_Swsitch = p.fn_or_arrow_data_visit.is_inside_switch; + p.fn_or_arrow_data_visit.is_inside_switch = true; + defer p.fn_or_arrow_data_visit.is_inside_switch = old_is_inside_Swsitch; + var i: usize = 0; + while (i < data.cases.len) : (i += 1) { + const case = data.cases[i]; + if (case.value) |val| { + data.cases[i].value = p.visitExpr(val); + // TODO: error messages + // Check("case", *c.Value, c.Value.Loc) + // p.warnAboutTypeofAndString(s.Test, *c.Value) + } + var _stmts = List(Stmt).fromOwnedSlice(p.allocator, case.body); + p.visitStmts(&_stmts, StmtsKind.none) catch unreachable; + data.cases[i].body = _stmts.toOwnedSlice(); + } + } + // TODO: duplicate case checker - // Lower class field syntax for browsers that don't support it - stmts.appendSlice(p.lowerClass(js_ast.StmtOrExpr{ .stmt = stmt.* }, shadow_ref)) catch unreachable; + }, + .s_function => |data| { + data.func = p.visitFunc(data.func, data.func.open_parens_loc); - // Handle exporting this class from a namespace - if (was_export_inside_namespace) { - stmts.appendAssumeCapacity(Expr.assignStmt(p.e(E.Dot{ - .target = p.e(E.Identifier{ .ref = p.enclosing_namespace_arg_ref.? }, stmt.loc), - .name = p.symbols.items[data.class.class_name.?.ref.?.inner_index].original_name, - .name_loc = data.class.class_name.?.loc, - }, stmt.loc), p.e(E.Identifier{ .ref = data.class.class_name.?.ref.? }, data.class.class_name.?.loc), p.allocator)); - } + // Handle exporting this function from a namespace + if (data.func.flags.is_export and p.enclosing_namespace_arg_ref != null) { + data.func.flags.is_export = false; - return; - }, - .s_enum => |data| { - p.recordDeclaredSymbol(data.name.ref.?) catch unreachable; - p.pushScopeForVisitPass(.entry, stmt.loc) catch unreachable; - defer p.popScope(); - p.recordDeclaredSymbol(data.arg) catch unreachable; - - // Scan ahead for any variables inside this namespace. This must be done - // ahead of time before visiting any statements inside the namespace - // because we may end up visiting the uses before the declarations. - // We need to convert the uses into property accesses on the namespace. - for (data.values) |value| { - if (!value.ref.isNull()) { - p.is_exported_inside_namespace.put(value.ref, data.arg) catch unreachable; - } - } - - // Values without initializers are initialized to one more than the - // previous value if the previous value is numeric. Otherwise values - // without initializers are initialized to undefined. - var next_numeric_value: f64 = 0.0; - var has_numeric_value = true; - - var value_exprs = List(Expr).initCapacity(p.allocator, data.values.len) catch unreachable; - - // Track values so they can be used by constant folding. We need to follow - // links here in case the enum was merged with a preceding namespace - var values_so_far = StringHashMap(f64).init(p.allocator); - p.known_enum_values.put(data.name.ref orelse p.panic("Expected data.name.ref", .{}), values_so_far) catch unreachable; - p.known_enum_values.put(data.arg, values_so_far) catch unreachable; - - // We normally don't fold numeric constants because they might increase code - // size, but it's important to fold numeric constants inside enums since - // that's what the TypeScript compiler does. - const old_should_fold_numeric_constants = p.should_fold_numeric_constants; - p.should_fold_numeric_constants = true; - for (data.values) |*enum_value| { - // gotta allocate here so it lives after this function stack frame goes poof - const name = enum_value.name; - var assign_target: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; - var has_string_value = false; - - if (enum_value.value != null) { - enum_value.value = p.visitExpr(enum_value.value.?); - switch (enum_value.value.?.data) { - .e_number => |num| { - - // prob never allocates in practice - values_so_far.put(name.string(p.allocator) catch unreachable, num.value) catch unreachable; - has_numeric_value = true; - next_numeric_value = num.value + 1.0; - }, - .e_string => |str| { - has_string_value = true; - }, - else => {}, - } - } else if (has_numeric_value) { - enum_value.value = p.e(E.Number{ .value = next_numeric_value }, enum_value.loc); - values_so_far.put(name.string(p.allocator) catch unreachable, next_numeric_value) catch unreachable; - next_numeric_value += 1; + const enclosing_namespace_arg_ref = p.enclosing_namespace_arg_ref orelse unreachable; + stmts.ensureUnusedCapacity(3) catch unreachable; + stmts.appendAssumeCapacity(stmt.*); + // i wonder if this will crash + stmts.appendAssumeCapacity(Expr.assignStmt(p.e(E.Dot{ + .target = p.e(E.Identifier{ .ref = enclosing_namespace_arg_ref }, stmt.loc), + .name = p.loadNameFromRef(data.func.name.?.ref.?), + .name_loc = data.func.name.?.loc, + }, stmt.loc), p.e(E.Identifier{ .ref = data.func.name.?.ref.? }, data.func.name.?.loc), p.allocator)); } else { - enum_value.value = p.e(E.Undefined{}, enum_value.loc); + stmts.ensureUnusedCapacity(2) catch unreachable; + stmts.appendAssumeCapacity(stmt.*); + } + + // stmts.appendAssumeCapacity( + // // i wonder if this will crash + // p.keepStmtSymbolName( + // data.func.name.?.loc, + // data.func.name.?.ref.?, + // p.symbols.items[data.func.name.?.ref.?.inner_index].original_name, + // ), + // ); + return; + }, + .s_class => |data| { + const shadow_ref = p.visitClass(stmt.loc, &data.class); + + // Remove the export flag inside a namespace + const was_export_inside_namespace = data.is_export and p.enclosing_namespace_arg_ref != null; + if (was_export_inside_namespace) { + data.is_export = false; } - // "Enum['Name'] = value" - assign_target = Expr.assign(p.e(E.Index{ - .target = p.e( - E.Identifier{ .ref = data.arg }, - enum_value.loc, - ), - .index = p.e( - enum_value.name, - enum_value.loc, - ), - }, enum_value.loc), enum_value.value orelse unreachable, p.allocator); - p.recordUsage(data.arg); + // Lower class field syntax for browsers that don't support it + stmts.appendSlice(p.lowerClass(js_ast.StmtOrExpr{ .stmt = stmt.* }, shadow_ref)) catch unreachable; - // String-valued enums do not form a two-way map - if (has_string_value) { - value_exprs.append(assign_target) catch unreachable; - } else { - // "Enum[assignTarget] = 'Name'" - value_exprs.append( - Expr.assign( - p.e(E.Index{ - .target = p.e( - E.Identifier{ .ref = data.arg }, - enum_value.loc, - ), - .index = assign_target, - }, enum_value.loc), - p.e(enum_value.name, enum_value.loc), - p.allocator, + // Handle exporting this class from a namespace + if (was_export_inside_namespace) { + stmts.appendAssumeCapacity(Expr.assignStmt(p.e(E.Dot{ + .target = p.e(E.Identifier{ .ref = p.enclosing_namespace_arg_ref.? }, stmt.loc), + .name = p.symbols.items[data.class.class_name.?.ref.?.inner_index].original_name, + .name_loc = data.class.class_name.?.loc, + }, stmt.loc), p.e(E.Identifier{ .ref = data.class.class_name.?.ref.? }, data.class.class_name.?.loc), p.allocator)); + } + + return; + }, + .s_enum => |data| { + p.recordDeclaredSymbol(data.name.ref.?) catch unreachable; + p.pushScopeForVisitPass(.entry, stmt.loc) catch unreachable; + defer p.popScope(); + p.recordDeclaredSymbol(data.arg) catch unreachable; + + // Scan ahead for any variables inside this namespace. This must be done + // ahead of time before visiting any statements inside the namespace + // because we may end up visiting the uses before the declarations. + // We need to convert the uses into property accesses on the namespace. + for (data.values) |value| { + if (!value.ref.isNull()) { + p.is_exported_inside_namespace.put(value.ref, data.arg) catch unreachable; + } + } + + // Values without initializers are initialized to one more than the + // previous value if the previous value is numeric. Otherwise values + // without initializers are initialized to undefined. + var next_numeric_value: f64 = 0.0; + var has_numeric_value = true; + + var value_exprs = List(Expr).initCapacity(p.allocator, data.values.len) catch unreachable; + + // Track values so they can be used by constant folding. We need to follow + // links here in case the enum was merged with a preceding namespace + var values_so_far = StringHashMap(f64).init(p.allocator); + p.known_enum_values.put(data.name.ref orelse p.panic("Expected data.name.ref", .{}), values_so_far) catch unreachable; + p.known_enum_values.put(data.arg, values_so_far) catch unreachable; + + // We normally don't fold numeric constants because they might increase code + // size, but it's important to fold numeric constants inside enums since + // that's what the TypeScript compiler does. + const old_should_fold_numeric_constants = p.should_fold_numeric_constants; + p.should_fold_numeric_constants = true; + for (data.values) |*enum_value| { + // gotta allocate here so it lives after this function stack frame goes poof + const name = enum_value.name; + var assign_target: Expr = Expr{ .loc = logger.Loc.Empty, .data = Prefill.Data.EMissing }; + var has_string_value = false; + + if (enum_value.value != null) { + enum_value.value = p.visitExpr(enum_value.value.?); + switch (enum_value.value.?.data) { + .e_number => |num| { + + // prob never allocates in practice + values_so_far.put(name.string(p.allocator) catch unreachable, num.value) catch unreachable; + has_numeric_value = true; + next_numeric_value = num.value + 1.0; + }, + .e_string => |str| { + has_string_value = true; + }, + else => {}, + } + } else if (has_numeric_value) { + enum_value.value = p.e(E.Number{ .value = next_numeric_value }, enum_value.loc); + values_so_far.put(name.string(p.allocator) catch unreachable, next_numeric_value) catch unreachable; + next_numeric_value += 1; + } else { + enum_value.value = p.e(E.Undefined{}, enum_value.loc); + } + // "Enum['Name'] = value" + assign_target = Expr.assign(p.e(E.Index{ + .target = p.e( + E.Identifier{ .ref = data.arg }, + enum_value.loc, ), - ) catch unreachable; + .index = p.e( + enum_value.name, + enum_value.loc, + ), + }, enum_value.loc), enum_value.value orelse unreachable, p.allocator); + + p.recordUsage(data.arg); + + // String-valued enums do not form a two-way map + if (has_string_value) { + value_exprs.append(assign_target) catch unreachable; + } else { + // "Enum[assignTarget] = 'Name'" + value_exprs.append( + Expr.assign( + p.e(E.Index{ + .target = p.e( + E.Identifier{ .ref = data.arg }, + enum_value.loc, + ), + .index = assign_target, + }, enum_value.loc), + p.e(enum_value.name, enum_value.loc), + p.allocator, + ), + ) catch unreachable; + } + p.recordUsage(data.arg); } - p.recordUsage(data.arg); - } - p.should_fold_numeric_constants = old_should_fold_numeric_constants; + p.should_fold_numeric_constants = old_should_fold_numeric_constants; - var value_stmts = List(Stmt).initCapacity(p.allocator, value_exprs.items.len) catch unreachable; - // Generate statements from expressions - for (value_exprs.items) |expr| { - value_stmts.appendAssumeCapacity(p.s(S.SExpr{ .value = expr }, expr.loc)); - } - value_exprs.deinit(); - try p.generateClosureForTypeScriptNamespaceOrEnum( - stmts, - stmt.loc, - data.is_export, - data.name.loc, - data.name.ref.?, - data.arg, - value_stmts.toOwnedSlice(), - ); - return; - }, - .s_namespace => |data| { - p.recordDeclaredSymbol(data.name.ref.?) catch unreachable; - - // Scan ahead for any variables inside this namespace. This must be done - // ahead of time before visiting any statements inside the namespace - // because we may end up visiting the uses before the declarations. - // We need to convert the uses into property accesses on the namespace. - for (data.stmts) |child_stmt| { - switch (child_stmt.data) { - .s_local => |local| { - if (local.is_export) { - p.markExportedDeclsInsideNamespace(data.arg, local.decls); - } - }, - else => {}, + var value_stmts = List(Stmt).initCapacity(p.allocator, value_exprs.items.len) catch unreachable; + // Generate statements from expressions + for (value_exprs.items) |expr| { + value_stmts.appendAssumeCapacity(p.s(S.SExpr{ .value = expr }, expr.loc)); + } + value_exprs.deinit(); + try p.generateClosureForTypeScriptNamespaceOrEnum( + stmts, + stmt.loc, + data.is_export, + data.name.loc, + data.name.ref.?, + data.arg, + value_stmts.toOwnedSlice(), + ); + return; + }, + .s_namespace => |data| { + p.recordDeclaredSymbol(data.name.ref.?) catch unreachable; + + // Scan ahead for any variables inside this namespace. This must be done + // ahead of time before visiting any statements inside the namespace + // because we may end up visiting the uses before the declarations. + // We need to convert the uses into property accesses on the namespace. + for (data.stmts) |child_stmt| { + switch (child_stmt.data) { + .s_local => |local| { + if (local.is_export) { + p.markExportedDeclsInsideNamespace(data.arg, local.decls); + } + }, + else => {}, + } } - } - var prepend_temp_refs = PrependTempRefsOpts{ .kind = StmtsKind.fn_body }; - var prepend_list = List(Stmt).fromOwnedSlice(p.allocator, data.stmts); + var prepend_temp_refs = PrependTempRefsOpts{ .kind = StmtsKind.fn_body }; + var prepend_list = List(Stmt).fromOwnedSlice(p.allocator, data.stmts); - const old_enclosing_namespace_arg_ref = p.enclosing_namespace_arg_ref; - p.enclosing_namespace_arg_ref = data.arg; - p.pushScopeForVisitPass(.entry, stmt.loc) catch unreachable; - p.recordDeclaredSymbol(data.arg) catch unreachable; - p.visitStmtsAndPrependTempRefs(&prepend_list, &prepend_temp_refs) catch unreachable; - p.popScope(); - p.enclosing_namespace_arg_ref = old_enclosing_namespace_arg_ref; - - try p.generateClosureForTypeScriptNamespaceOrEnum( - stmts, - stmt.loc, - data.is_export, - data.name.loc, - data.name.ref.?, - data.arg, - prepend_list.items, - ); - return; - }, - else => { - notimpl(); - }, - } + const old_enclosing_namespace_arg_ref = p.enclosing_namespace_arg_ref; + p.enclosing_namespace_arg_ref = data.arg; + p.pushScopeForVisitPass(.entry, stmt.loc) catch unreachable; + p.recordDeclaredSymbol(data.arg) catch unreachable; + p.visitStmtsAndPrependTempRefs(&prepend_list, &prepend_temp_refs) catch unreachable; + p.popScope(); + p.enclosing_namespace_arg_ref = old_enclosing_namespace_arg_ref; + + try p.generateClosureForTypeScriptNamespaceOrEnum( + stmts, + stmt.loc, + data.is_export, + data.name.loc, + data.name.ref.?, + data.arg, + prepend_list.items, + ); + return; + }, + else => { + notimpl(); + }, + } - // if we get this far, it stays - try stmts.append(stmt.*); - } + // if we get this far, it stays + try stmts.append(stmt.*); + } - pub fn markExportedDeclsInsideNamespace(p: *P, ns_ref: Ref, decls: []G.Decl) void { - for (decls) |decl| { - p.markExportedBindingInsideNamespace(ns_ref, decl.binding); + pub fn markExportedDeclsInsideNamespace(p: *P, ns_ref: Ref, decls: []G.Decl) void { + for (decls) |decl| { + p.markExportedBindingInsideNamespace(ns_ref, decl.binding); + } } - } - pub fn appendIfBodyPreservingScope(p: *P, stmts: *List(Stmt), body: Stmt) !void { - switch (body.data) { - .s_block => |block| { - var keep_block = false; - for (block.stmts) |stmt| { - if (statementCaresAboutScope(stmt)) { - keep_block = true; - break; + pub fn appendIfBodyPreservingScope(p: *P, stmts: *List(Stmt), body: Stmt) !void { + switch (body.data) { + .s_block => |block| { + var keep_block = false; + for (block.stmts) |stmt| { + if (statementCaresAboutScope(stmt)) { + keep_block = true; + break; + } } - } - if (!keep_block and block.stmts.len > 0) { - try stmts.appendSlice(block.stmts); - return; - } - }, - else => {}, - } + if (!keep_block and block.stmts.len > 0) { + try stmts.appendSlice(block.stmts); + return; + } + }, + else => {}, + } - if (statementCaresAboutScope(body)) { - var block_stmts = try p.allocator.alloc(Stmt, 1); - block_stmts[0] = body; - try stmts.append(p.s(S.Block{ .stmts = block_stmts }, body.loc)); + if (statementCaresAboutScope(body)) { + var block_stmts = try p.allocator.alloc(Stmt, 1); + block_stmts[0] = body; + try stmts.append(p.s(S.Block{ .stmts = block_stmts }, body.loc)); + return; + } + + try stmts.append(body); return; } - try stmts.append(body); - return; - } - - pub fn markExportedBindingInsideNamespace(p: *P, ref: Ref, binding: BindingNodeIndex) void { - switch (binding.data) { - .b_missing => {}, - .b_identifier => |ident| { - p.is_exported_inside_namespace.put(ident.ref, ref) catch unreachable; - }, - .b_array => |array| { - for (array.items) |item| { - p.markExportedBindingInsideNamespace(ref, item.binding); - } - }, - .b_object => |obj| { - for (obj.properties) |item| { - p.markExportedBindingInsideNamespace(ref, item.value); - } - }, - else => { - Global.panic("Unexpected binding type in namespace. This is a bug. {s}", .{binding}); - }, + pub fn markExportedBindingInsideNamespace(p: *P, ref: Ref, binding: BindingNodeIndex) void { + switch (binding.data) { + .b_missing => {}, + .b_identifier => |ident| { + p.is_exported_inside_namespace.put(ident.ref, ref) catch unreachable; + }, + .b_array => |array| { + for (array.items) |item| { + p.markExportedBindingInsideNamespace(ref, item.binding); + } + }, + .b_object => |obj| { + for (obj.properties) |item| { + p.markExportedBindingInsideNamespace(ref, item.value); + } + }, + else => { + Global.panic("Unexpected binding type in namespace. This is a bug. {s}", .{binding}); + }, + } } - } - pub fn generateClosureForTypeScriptNamespaceOrEnum( - p: *P, - stmts: *List(Stmt), - stmt_loc: logger.Loc, - is_export: bool, - name_loc: logger.Loc, - _name_ref: Ref, - arg_ref: Ref, - stmts_inside_closure: []Stmt, - ) anyerror!void { - var name_ref = _name_ref; - // Follow the link chain in case symbols were merged - var symbol: Symbol = p.symbols.items[name_ref.inner_index]; - while (symbol.link != null) { - const link = symbol.link orelse unreachable; - name_ref = link; - symbol = p.symbols.items[name_ref.inner_index]; - } - - // Make sure to only emit a variable once for a given namespace, since there - // can be multiple namespace blocks for the same namespace - - if (symbol.kind == .ts_namespace or symbol.kind == .ts_enum and !p.emitted_namespace_vars.contains(name_ref)) { - p.emitted_namespace_vars.put(name_ref, true) catch unreachable; - - var decls = p.allocator.alloc(G.Decl, 1) catch unreachable; - decls[0] = G.Decl{ .binding = p.b(B.Identifier{ .ref = name_ref }, name_loc) }; - - if (p.enclosing_namespace_arg_ref == null) { - // Top-level namespace - stmts.append( - p.s( - S.Local{ - .kind = .k_var, - .decls = decls, - .is_export = is_export, - }, - stmt_loc, - ), - ) catch unreachable; - } else { - // Nested namespace - stmts.append( - p.s( - S.Local{ - .kind = .k_let, - .decls = decls, - .is_export = is_export, - }, - stmt_loc, - ), - ) catch unreachable; + pub fn generateClosureForTypeScriptNamespaceOrEnum( + p: *P, + stmts: *List(Stmt), + stmt_loc: logger.Loc, + is_export: bool, + name_loc: logger.Loc, + _name_ref: Ref, + arg_ref: Ref, + stmts_inside_closure: []Stmt, + ) anyerror!void { + var name_ref = _name_ref; + // Follow the link chain in case symbols were merged + var symbol: Symbol = p.symbols.items[name_ref.inner_index]; + while (symbol.link != null) { + const link = symbol.link orelse unreachable; + name_ref = link; + symbol = p.symbols.items[name_ref.inner_index]; } - } - var arg_expr: Expr = undefined; + // Make sure to only emit a variable once for a given namespace, since there + // can be multiple namespace blocks for the same namespace - if (is_export and p.enclosing_namespace_arg_ref != null) { - const namespace = p.enclosing_namespace_arg_ref.?; - // "name = enclosing.name || (enclosing.name = {})" - const name = p.symbols.items[name_ref.inner_index].original_name; - arg_expr = Expr.assign( - p.e( - E.Identifier{ .ref = name_ref }, - name_loc, - ), - p.e( - E.Binary{ - .op = .bin_logical_or, - .left = p.e( - E.Dot{ - .target = p.e( - E.Identifier{ .ref = namespace }, - name_loc, - ), - .name = name, - .name_loc = name_loc, + if (symbol.kind == .ts_namespace or symbol.kind == .ts_enum and !p.emitted_namespace_vars.contains(name_ref)) { + p.emitted_namespace_vars.put(name_ref, true) catch unreachable; + + var decls = p.allocator.alloc(G.Decl, 1) catch unreachable; + decls[0] = G.Decl{ .binding = p.b(B.Identifier{ .ref = name_ref }, name_loc) }; + + if (p.enclosing_namespace_arg_ref == null) { + // Top-level namespace + stmts.append( + p.s( + S.Local{ + .kind = .k_var, + .decls = decls, + .is_export = is_export, }, - name_loc, + stmt_loc, ), - .right = Expr.assign( - p.e( + ) catch unreachable; + } else { + // Nested namespace + stmts.append( + p.s( + S.Local{ + .kind = .k_let, + .decls = decls, + .is_export = is_export, + }, + stmt_loc, + ), + ) catch unreachable; + } + } + + var arg_expr: Expr = undefined; + + if (is_export and p.enclosing_namespace_arg_ref != null) { + const namespace = p.enclosing_namespace_arg_ref.?; + // "name = enclosing.name || (enclosing.name = {})" + const name = p.symbols.items[name_ref.inner_index].original_name; + arg_expr = Expr.assign( + p.e( + E.Identifier{ .ref = name_ref }, + name_loc, + ), + p.e( + E.Binary{ + .op = .bin_logical_or, + .left = p.e( E.Dot{ .target = p.e( E.Identifier{ .ref = namespace }, @@ -12014,1094 +12008,1123 @@ pub const P = struct { }, name_loc, ), - p.e(E.Object{ .properties = &[_]G.Property{} }, name_loc), - p.allocator, - ), - }, - name_loc, - ), - p.allocator, - ); - p.recordUsage(namespace); - p.recordUsage(namespace); - p.recordUsage(name_ref); - } else { - // "name || (name = {})" - arg_expr = p.e(E.Binary{ - .op = .bin_logical_or, - .left = p.e(E.Identifier{ .ref = name_ref }, name_loc), - .right = Expr.assign( - p.e(E.Identifier{ .ref = name_ref }, name_loc), - p.e( - E.Object{ .properties = &[_]G.Property{} }, + .right = Expr.assign( + p.e( + E.Dot{ + .target = p.e( + E.Identifier{ .ref = namespace }, + name_loc, + ), + .name = name, + .name_loc = name_loc, + }, + name_loc, + ), + p.e(E.Object{ .properties = &[_]G.Property{} }, name_loc), + p.allocator, + ), + }, name_loc, ), p.allocator, - ), - }, name_loc); - p.recordUsage(name_ref); - p.recordUsage(name_ref); - } - - var func_args = p.allocator.alloc(G.Arg, 1) catch unreachable; - func_args[0] = .{ .binding = p.b(B.Identifier{ .ref = arg_ref }, name_loc) }; - var args_list = p.allocator.alloc(ExprNodeIndex, 1) catch unreachable; - args_list[0] = arg_expr; - const func = G.Fn{ - .args = func_args, - .name = null, - .open_parens_loc = stmt_loc, - .body = G.FnBody{ - .loc = stmt_loc, - .stmts = try p.allocator.dupe(StmtNodeIndex, stmts_inside_closure), - }, - }; - const target = p.e( - E.Function{ - .func = func, - }, - stmt_loc, - ); + ); + p.recordUsage(namespace); + p.recordUsage(namespace); + p.recordUsage(name_ref); + } else { + // "name || (name = {})" + arg_expr = p.e(E.Binary{ + .op = .bin_logical_or, + .left = p.e(E.Identifier{ .ref = name_ref }, name_loc), + .right = Expr.assign( + p.e(E.Identifier{ .ref = name_ref }, name_loc), + p.e( + E.Object{ .properties = &[_]G.Property{} }, + name_loc, + ), + p.allocator, + ), + }, name_loc); + p.recordUsage(name_ref); + p.recordUsage(name_ref); + } + + var func_args = p.allocator.alloc(G.Arg, 1) catch unreachable; + func_args[0] = .{ .binding = p.b(B.Identifier{ .ref = arg_ref }, name_loc) }; + var args_list = p.allocator.alloc(ExprNodeIndex, 1) catch unreachable; + args_list[0] = arg_expr; + const func = G.Fn{ + .args = func_args, + .name = null, + .open_parens_loc = stmt_loc, + .body = G.FnBody{ + .loc = stmt_loc, + .stmts = try p.allocator.dupe(StmtNodeIndex, stmts_inside_closure), + }, + }; + const target = p.e( + E.Function{ + .func = func, + }, + stmt_loc, + ); - const call = p.e( - E.Call{ - .target = target, - .args = args_list, - }, - stmt_loc, - ); + const call = p.e( + E.Call{ + .target = target, + .args = args_list, + }, + stmt_loc, + ); - const closure = p.s( - S.SExpr{ - .value = call, - }, - stmt_loc, - ); + const closure = p.s( + S.SExpr{ + .value = call, + }, + stmt_loc, + ); - stmts.append(closure) catch unreachable; - } + stmts.append(closure) catch unreachable; + } - pub fn lowerClass(p: *P, stmtorexpr: js_ast.StmtOrExpr, ref: Ref) []Stmt { - switch (stmtorexpr) { - .stmt => |stmt| { - var stmts = p.allocator.alloc(Stmt, 1) catch unreachable; - stmts[0] = stmt; - return stmts; - }, - .expr => |expr| { - var stmts = p.allocator.alloc(Stmt, 1) catch unreachable; - stmts[0] = p.s(S.SExpr{ .value = expr }, expr.loc); - return stmts; - }, + pub fn lowerClass(p: *P, stmtorexpr: js_ast.StmtOrExpr, ref: Ref) []Stmt { + switch (stmtorexpr) { + .stmt => |stmt| { + var stmts = p.allocator.alloc(Stmt, 1) catch unreachable; + stmts[0] = stmt; + return stmts; + }, + .expr => |expr| { + var stmts = p.allocator.alloc(Stmt, 1) catch unreachable; + stmts[0] = p.s(S.SExpr{ .value = expr }, expr.loc); + return stmts; + }, + } } - } - pub fn visitForLoopInit(p: *P, stmt: Stmt, is_in_or_of: bool) Stmt { - switch (stmt.data) { - .s_expr => |st| { - const assign_target = if (is_in_or_of) js_ast.AssignTarget.replace else js_ast.AssignTarget.none; - p.stmt_expr_value = st.value.data; - st.value = p.visitExprInOut(st.value, ExprIn{ .assign_target = assign_target }); - }, - .s_local => |st| { - for (st.decls) |*dec| { - p.visitBinding(dec.binding, null); - if (dec.value) |val| { - dec.value = p.visitExpr(val); + pub fn visitForLoopInit(p: *P, stmt: Stmt, is_in_or_of: bool) Stmt { + switch (stmt.data) { + .s_expr => |st| { + const assign_target = if (is_in_or_of) js_ast.AssignTarget.replace else js_ast.AssignTarget.none; + p.stmt_expr_value = st.value.data; + st.value = p.visitExprInOut(st.value, ExprIn{ .assign_target = assign_target }); + }, + .s_local => |st| { + for (st.decls) |*dec| { + p.visitBinding(dec.binding, null); + if (dec.value) |val| { + dec.value = p.visitExpr(val); + } } - } - // st.kind = .k_var; - // s.Decls = p.lowerObjectRestInDecls(s.Decls) - // s.Kind = p.selectLocalKind(s.Kind) - }, - else => { - p.panic("Unexpected stmt in visitForLoopInit: {s}", .{stmt}); - }, + // st.kind = .k_var; + // s.Decls = p.lowerObjectRestInDecls(s.Decls) + // s.Kind = p.selectLocalKind(s.Kind) + }, + else => { + p.panic("Unexpected stmt in visitForLoopInit: {s}", .{stmt}); + }, + } + + return stmt; } - return stmt; - } + pub fn wrapIdentifierNamespace( + p: *P, + loc: logger.Loc, + ref: Ref, + ) Expr { + p.recordUsage((p.enclosing_namespace_arg_ref orelse unreachable)); - pub fn wrapIdentifierNamespace( - p: *P, - loc: logger.Loc, - ref: Ref, - ) Expr { - p.recordUsage((p.enclosing_namespace_arg_ref orelse unreachable)); - - return p.e(E.Dot{ - .target = p.e(E.Identifier{ .ref = p.enclosing_namespace_arg_ref orelse unreachable }, loc), - .name = p.symbols.items[ref.inner_index].original_name, - .name_loc = loc, - }, loc); - } + return p.e(E.Dot{ + .target = p.e(E.Identifier{ .ref = p.enclosing_namespace_arg_ref orelse unreachable }, loc), + .name = p.symbols.items[ref.inner_index].original_name, + .name_loc = loc, + }, loc); + } - pub fn wrapIdentifierHoisting( - p: *P, - loc: logger.Loc, - ref: Ref, - ) Expr { - p.relocated_top_level_vars.append(LocRef{ .loc = loc, .ref = ref }) catch unreachable; - var _ref = ref; - p.recordUsage(_ref); - return p.e(E.Identifier{ .ref = _ref }, loc); - } + pub fn wrapIdentifierHoisting( + p: *P, + loc: logger.Loc, + ref: Ref, + ) Expr { + p.relocated_top_level_vars.append(LocRef{ .loc = loc, .ref = ref }) catch unreachable; + var _ref = ref; + p.recordUsage(_ref); + return p.e(E.Identifier{ .ref = _ref }, loc); + } - pub fn isAnonymousNamedExpr(p: *P, expr: ExprNodeIndex) bool { - switch (expr.data) { - .e_arrow => { - return true; - }, - .e_function => |func| { - return func.func.name == null; - }, - .e_class => |class| { - return class.class_name == null; - }, - else => { - return false; - }, + pub fn isAnonymousNamedExpr(p: *P, expr: ExprNodeIndex) bool { + switch (expr.data) { + .e_arrow => { + return true; + }, + .e_function => |func| { + return func.func.name == null; + }, + .e_class => |class| { + return class.class_name == null; + }, + else => { + return false; + }, + } } - } - pub fn valueForDefine(p: *P, loc: logger.Loc, assign_target: js_ast.AssignTarget, is_delete_target: bool, define_data: *const DefineData) Expr { - switch (define_data.value) { - .e_identifier => { - var ident = define_data.value.e_identifier; + pub fn valueForDefine(p: *P, loc: logger.Loc, assign_target: js_ast.AssignTarget, is_delete_target: bool, define_data: *const DefineData) Expr { + switch (define_data.value) { + .e_identifier => { + var ident = define_data.value.e_identifier; - return p.handleIdentifier( - loc, - ident, - define_data.original_name.?, - IdentifierOpts{ - .assign_target = assign_target, - .is_delete_target = is_delete_target, - .was_originally_identifier = true, - }, - ); - }, - else => {}, + return p.handleIdentifier( + loc, + ident, + define_data.original_name.?, + IdentifierOpts{ + .assign_target = assign_target, + .is_delete_target = is_delete_target, + .was_originally_identifier = true, + }, + ); + }, + else => {}, + } + + return Expr{ + .data = define_data.value, + .loc = loc, + }; } - return Expr{ - .data = define_data.value, - .loc = loc, - }; - } + pub fn isDotDefineMatch(p: *P, expr: Expr, parts: []const string) bool { + switch (expr.data) { + .e_dot => |ex| { + if (parts.len > 1) { + if (ex.optional_chain != null) { + return false; + } - pub fn isDotDefineMatch(p: *P, expr: Expr, parts: []const string) bool { - switch (expr.data) { - .e_dot => |ex| { - if (parts.len > 1) { - if (ex.optional_chain != null) { - return false; + // Intermediates must be dot expressions + const last = parts.len - 1; + const is_tail_match = strings.eql(parts[last], ex.name); + return is_tail_match and p.isDotDefineMatch(ex.target, parts[0..last]); } + }, + .e_import_meta => { + return parts.len == 2 and strings.eqlComptime(parts[0], "import") and strings.eqlComptime(parts[1], "meta"); + }, + .e_identifier => |ex| { - // Intermediates must be dot expressions - const last = parts.len - 1; - const is_tail_match = strings.eql(parts[last], ex.name); - return is_tail_match and p.isDotDefineMatch(ex.target, parts[0..last]); - } - }, - .e_import_meta => { - return parts.len == 2 and strings.eqlComptime(parts[0], "import") and strings.eqlComptime(parts[1], "meta"); - }, - .e_identifier => |ex| { + // The last expression must be an identifier + if (parts.len == 1) { + const name = p.loadNameFromRef(ex.ref); + if (!strings.eql(name, parts[0])) { + return false; + } - // The last expression must be an identifier - if (parts.len == 1) { - const name = p.loadNameFromRef(ex.ref); - if (!strings.eql(name, parts[0])) { - return false; - } + const result = p.findSymbol(expr.loc, name) catch return false; - const result = p.findSymbol(expr.loc, name) catch return false; + // We must not be in a "with" statement scope + if (result.is_inside_with_scope) { + return false; + } - // We must not be in a "with" statement scope - if (result.is_inside_with_scope) { - return false; + // The last symbol must be unbound + return p.symbols.items[result.ref.inner_index].kind == .unbound; } + }, + else => {}, + } - // The last symbol must be unbound - return p.symbols.items[result.ref.inner_index].kind == .unbound; - } - }, - else => {}, + return false; } - return false; - } - - pub fn visitBinding(p: *P, binding: BindingNodeIndex, duplicate_arg_check: ?*StringBoolMap) void { - switch (binding.data) { - .b_missing => {}, - .b_identifier => |bind| { - p.recordDeclaredSymbol(bind.ref) catch unreachable; - const name = p.symbols.items[bind.ref.inner_index].original_name; - if (isEvalOrArguments(name)) { - p.markStrictModeFeature(.eval_or_arguments, js_lexer.rangeOfIdentifier(p.source, binding.loc), name) catch unreachable; - } - - if (duplicate_arg_check) |dup| { - const res = dup.getOrPut(name) catch unreachable; - if (res.found_existing) { - p.log.addRangeErrorFmt( - p.source, - js_lexer.rangeOfIdentifier(p.source, binding.loc), - p.allocator, - "\"{s}\" cannot be bound multiple times in the same parameter list", - .{name}, - ) catch unreachable; + pub fn visitBinding(p: *P, binding: BindingNodeIndex, duplicate_arg_check: ?*StringBoolMap) void { + switch (binding.data) { + .b_missing => {}, + .b_identifier => |bind| { + p.recordDeclaredSymbol(bind.ref) catch unreachable; + const name = p.symbols.items[bind.ref.inner_index].original_name; + if (isEvalOrArguments(name)) { + p.markStrictModeFeature(.eval_or_arguments, js_lexer.rangeOfIdentifier(p.source, binding.loc), name) catch unreachable; } - res.entry.value = true; - } - }, - .b_array => |bind| { - for (bind.items) |*item| { - p.visitBinding(item.binding, duplicate_arg_check); - if (item.default_value) |default_value| { - const was_anonymous_named_expr = p.isAnonymousNamedExpr(default_value); - item.default_value = p.visitExpr(default_value); - - switch (item.binding.data) { - .b_identifier => |bind_| { - item.default_value = p.maybeKeepExprSymbolName( - item.default_value orelse unreachable, - p.symbols.items[bind_.ref.inner_index].original_name, - was_anonymous_named_expr, - ); - }, - else => {}, + + if (duplicate_arg_check) |dup| { + const res = dup.getOrPut(name) catch unreachable; + if (res.found_existing) { + p.log.addRangeErrorFmt( + p.source, + js_lexer.rangeOfIdentifier(p.source, binding.loc), + p.allocator, + "\"{s}\" cannot be bound multiple times in the same parameter list", + .{name}, + ) catch unreachable; } + res.entry.value = true; } - } - }, - .b_object => |bind| { - for (bind.properties) |*property| { - if (!property.flags.is_spread) { - property.key = p.visitExpr(property.key); - } - - p.visitBinding(property.value, duplicate_arg_check); - if (property.default_value) |default_value| { - const was_anonymous_named_expr = p.isAnonymousNamedExpr(default_value); - property.default_value = p.visitExpr(default_value); - - switch (property.value.data) { - .b_identifier => |bind_| { - property.default_value = p.maybeKeepExprSymbolName( - property.default_value orelse unreachable, - p.symbols.items[bind_.ref.inner_index].original_name, - was_anonymous_named_expr, - ); - }, - else => {}, + }, + .b_array => |bind| { + for (bind.items) |*item| { + p.visitBinding(item.binding, duplicate_arg_check); + if (item.default_value) |default_value| { + const was_anonymous_named_expr = p.isAnonymousNamedExpr(default_value); + item.default_value = p.visitExpr(default_value); + + switch (item.binding.data) { + .b_identifier => |bind_| { + item.default_value = p.maybeKeepExprSymbolName( + item.default_value orelse unreachable, + p.symbols.items[bind_.ref.inner_index].original_name, + was_anonymous_named_expr, + ); + }, + else => {}, + } } } - } - }, - else => { - p.panic("Unexpected binding {s}", .{binding}); - }, - } - } + }, + .b_object => |bind| { + for (bind.properties) |*property| { + if (!property.flags.is_spread) { + property.key = p.visitExpr(property.key); + } - pub fn visitLoopBody(p: *P, stmt: StmtNodeIndex) StmtNodeIndex { - const old_is_inside_loop = p.fn_or_arrow_data_visit.is_inside_loop; - p.fn_or_arrow_data_visit.is_inside_loop = true; - p.loop_body = stmt.data; - const res = p.visitSingleStmt(stmt, .loop_body); - p.fn_or_arrow_data_visit.is_inside_loop = old_is_inside_loop; - return res; - } + p.visitBinding(property.value, duplicate_arg_check); + if (property.default_value) |default_value| { + const was_anonymous_named_expr = p.isAnonymousNamedExpr(default_value); + property.default_value = p.visitExpr(default_value); - pub fn visitSingleStmt(p: *P, stmt: Stmt, kind: StmtsKind) Stmt { - const has_if_scope = has_if: { - switch (stmt.data) { - .s_function => { - break :has_if stmt.getFunction().func.flags.has_if_scope; + switch (property.value.data) { + .b_identifier => |bind_| { + property.default_value = p.maybeKeepExprSymbolName( + property.default_value orelse unreachable, + p.symbols.items[bind_.ref.inner_index].original_name, + was_anonymous_named_expr, + ); + }, + else => {}, + } + } + } }, else => { - break :has_if false; + p.panic("Unexpected binding {s}", .{binding}); }, } - }; - - // Introduce a fake block scope for function declarations inside if statements - if (has_if_scope) { - p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; } - var stmts = List(Stmt).initCapacity(p.allocator, 1) catch unreachable; - stmts.append(stmt) catch unreachable; - p.visitStmts(&stmts, kind) catch unreachable; - - if (has_if_scope) { - p.popScope(); + pub fn visitLoopBody(p: *P, stmt: StmtNodeIndex) StmtNodeIndex { + const old_is_inside_loop = p.fn_or_arrow_data_visit.is_inside_loop; + p.fn_or_arrow_data_visit.is_inside_loop = true; + p.loop_body = stmt.data; + const res = p.visitSingleStmt(stmt, .loop_body); + p.fn_or_arrow_data_visit.is_inside_loop = old_is_inside_loop; + return res; } - return p.stmtsToSingleStmt(stmt.loc, stmts.toOwnedSlice()); - } + pub fn visitSingleStmt(p: *P, stmt: Stmt, kind: StmtsKind) Stmt { + const has_if_scope = has_if: { + switch (stmt.data) { + .s_function => { + break :has_if stmt.getFunction().func.flags.has_if_scope; + }, + else => { + break :has_if false; + }, + } + }; - // One statement could potentially expand to several statements - pub fn stmtsToSingleStmt(p: *P, loc: logger.Loc, stmts: []Stmt) Stmt { - if (stmts.len == 0) { - return Stmt{ .data = Prefill.Data.SEmpty, .loc = loc }; - } + // Introduce a fake block scope for function declarations inside if statements + if (has_if_scope) { + p.pushScopeForVisitPass(.block, stmt.loc) catch unreachable; + } - if (stmts.len == 1 and std.meta.activeTag(stmts[0].data) != .s_local or (std.meta.activeTag(stmts[0].data) == .s_local and stmts[0].getLocal().kind == S.Local.Kind.k_var)) { - // "let" and "const" must be put in a block when in a single-statement context - return stmts[0]; - } + var stmts = List(Stmt).initCapacity(p.allocator, 1) catch unreachable; + stmts.append(stmt) catch unreachable; + p.visitStmts(&stmts, kind) catch unreachable; - return p.s(S.Block{ .stmts = stmts }, loc); - } + if (has_if_scope) { + p.popScope(); + } - pub fn findLabelSymbol(p: *P, loc: logger.Loc, name: string) FindLabelSymbolResult { - var res = FindLabelSymbolResult{ .ref = Ref.None, .is_loop = false }; + return p.stmtsToSingleStmt(stmt.loc, stmts.toOwnedSlice()); + } - var _scope: ?*Scope = p.current_scope; + // One statement could potentially expand to several statements + pub fn stmtsToSingleStmt(p: *P, loc: logger.Loc, stmts: []Stmt) Stmt { + if (stmts.len == 0) { + return Stmt{ .data = Prefill.Data.SEmpty, .loc = loc }; + } - while (_scope != null and !_scope.?.kindStopsHoisting()) : (_scope = _scope.?.parent.?) { - const scope = _scope orelse unreachable; - const label_ref = scope.label_ref orelse continue; - if (scope.kind == .label and strings.eql(name, p.symbols.items[label_ref.inner_index].original_name)) { - // Track how many times we've referenced this symbol - p.recordUsage(label_ref); - res.ref = label_ref; - res.is_loop = scope.label_stmt_is_loop; - res.found = true; - return res; + if (stmts.len == 1 and std.meta.activeTag(stmts[0].data) != .s_local or (std.meta.activeTag(stmts[0].data) == .s_local and stmts[0].getLocal().kind == S.Local.Kind.k_var)) { + // "let" and "const" must be put in a block when in a single-statement context + return stmts[0]; } + + return p.s(S.Block{ .stmts = stmts }, loc); } - const r = js_lexer.rangeOfIdentifier(p.source, loc); - p.log.addRangeErrorFmt(p.source, r, p.allocator, "There is no containing label named {s}", .{name}) catch unreachable; + pub fn findLabelSymbol(p: *P, loc: logger.Loc, name: string) FindLabelSymbolResult { + var res = FindLabelSymbolResult{ .ref = Ref.None, .is_loop = false }; - // Allocate an "unbound" symbol - var ref = p.newSymbol(.unbound, name) catch unreachable; + var _scope: ?*Scope = p.current_scope; - // Track how many times we've referenced this symbol - p.recordUsage(ref); + while (_scope != null and !_scope.?.kindStopsHoisting()) : (_scope = _scope.?.parent.?) { + const scope = _scope orelse unreachable; + const label_ref = scope.label_ref orelse continue; + if (scope.kind == .label and strings.eql(name, p.symbols.items[label_ref.inner_index].original_name)) { + // Track how many times we've referenced this symbol + p.recordUsage(label_ref); + res.ref = label_ref; + res.is_loop = scope.label_stmt_is_loop; + res.found = true; + return res; + } + } - return res; - } + const r = js_lexer.rangeOfIdentifier(p.source, loc); + p.log.addRangeErrorFmt(p.source, r, p.allocator, "There is no containing label named {s}", .{name}) catch unreachable; - pub fn visitClass(p: *P, name_scope_loc: logger.Loc, class: *G.Class) Ref { - class.ts_decorators = p.visitTSDecorators(class.ts_decorators); + // Allocate an "unbound" symbol + var ref = p.newSymbol(.unbound, name) catch unreachable; - if (class.class_name) |name| { - p.recordDeclaredSymbol(name.ref.?) catch unreachable; + // Track how many times we've referenced this symbol + p.recordUsage(ref); + + return res; } - p.pushScopeForVisitPass(.class_name, name_scope_loc) catch unreachable; - const old_enclosing_class_keyword = p.enclosing_class_keyword; - p.enclosing_class_keyword = class.class_keyword; - p.current_scope.recursiveSetStrictMode(.implicit_strict_mode_class); - var class_name_ref: Ref = if (class.class_name != null) class.class_name.?.ref.? else p.newSymbol(.other, "this") catch unreachable; + pub fn visitClass(p: *P, name_scope_loc: logger.Loc, class: *G.Class) Ref { + class.ts_decorators = p.visitTSDecorators(class.ts_decorators); + + if (class.class_name) |name| { + p.recordDeclaredSymbol(name.ref.?) catch unreachable; + } + + p.pushScopeForVisitPass(.class_name, name_scope_loc) catch unreachable; + const old_enclosing_class_keyword = p.enclosing_class_keyword; + p.enclosing_class_keyword = class.class_keyword; + p.current_scope.recursiveSetStrictMode(.implicit_strict_mode_class); + var class_name_ref: Ref = if (class.class_name != null) class.class_name.?.ref.? else p.newSymbol(.other, "this") catch unreachable; - var shadow_ref = Ref.None; + var shadow_ref = Ref.None; - if (!class_name_ref.eql(Ref.None)) { - // are not allowed to assign to this symbol (it throws a TypeError). - const name = p.symbols.items[class_name_ref.inner_index].original_name; - var identifier = p.allocator.alloc(u8, name.len + 1) catch unreachable; - std.mem.copy(u8, identifier[1..identifier.len], name); - identifier[0] = '_'; - shadow_ref = p.newSymbol(Symbol.Kind.cconst, identifier) catch unreachable; - p.recordDeclaredSymbol(shadow_ref) catch unreachable; - if (class.class_name) |class_name| { - p.current_scope.members.put(identifier, Scope.Member{ .loc = class_name.loc, .ref = shadow_ref }) catch unreachable; + if (!class_name_ref.eql(Ref.None)) { + // are not allowed to assign to this symbol (it throws a TypeError). + const name = p.symbols.items[class_name_ref.inner_index].original_name; + var identifier = p.allocator.alloc(u8, name.len + 1) catch unreachable; + std.mem.copy(u8, identifier[1..identifier.len], name); + identifier[0] = '_'; + shadow_ref = p.newSymbol(Symbol.Kind.cconst, identifier) catch unreachable; + p.recordDeclaredSymbol(shadow_ref) catch unreachable; + if (class.class_name) |class_name| { + p.current_scope.members.put(identifier, Scope.Member{ .loc = class_name.loc, .ref = shadow_ref }) catch unreachable; + } } - } - if (class.extends) |extends| { - class.extends = p.visitExpr(extends); - } + if (class.extends) |extends| { + class.extends = p.visitExpr(extends); + } - p.pushScopeForVisitPass(.class_body, class.body_loc) catch unreachable; - defer p.popScope(); + p.pushScopeForVisitPass(.class_body, class.body_loc) catch unreachable; + defer p.popScope(); - var i: usize = 0; - while (i < class.properties.len) : (i += 1) { - var property = &class.properties[i]; - property.ts_decorators = p.visitTSDecorators(property.ts_decorators); - const is_private = if (property.key != null) @as(Expr.Tag, property.key.?.data) == .e_private_identifier else false; + var i: usize = 0; + while (i < class.properties.len) : (i += 1) { + var property = &class.properties[i]; + property.ts_decorators = p.visitTSDecorators(property.ts_decorators); + const is_private = if (property.key != null) @as(Expr.Tag, property.key.?.data) == .e_private_identifier else false; - // Special-case EPrivateIdentifier to allow it here + // Special-case EPrivateIdentifier to allow it here - if (is_private) { - p.recordDeclaredSymbol(property.key.?.getPrivateIdentifier().ref) catch unreachable; - } else if (property.key) |key| { - class.properties[i].key = p.visitExpr(key); - } + if (is_private) { + p.recordDeclaredSymbol(property.key.?.getPrivateIdentifier().ref) catch unreachable; + } else if (property.key) |key| { + class.properties[i].key = p.visitExpr(key); + } - // Make it an error to use "arguments" in a class body - p.current_scope.forbid_arguments = true; - defer p.current_scope.forbid_arguments = false; + // Make it an error to use "arguments" in a class body + p.current_scope.forbid_arguments = true; + defer p.current_scope.forbid_arguments = false; - // The value of "this" is shadowed inside property values - const old_is_this_captured = p.fn_only_data_visit.is_this_nested; - const old_this = p.fn_only_data_visit.this_class_static_ref; - p.fn_only_data_visit.is_this_nested = true; - p.fn_only_data_visit.this_class_static_ref = null; - defer p.fn_only_data_visit.is_this_nested = old_is_this_captured; - defer p.fn_only_data_visit.this_class_static_ref = old_this; + // The value of "this" is shadowed inside property values + const old_is_this_captured = p.fn_only_data_visit.is_this_nested; + const old_this = p.fn_only_data_visit.this_class_static_ref; + p.fn_only_data_visit.is_this_nested = true; + p.fn_only_data_visit.this_class_static_ref = null; + defer p.fn_only_data_visit.is_this_nested = old_is_this_captured; + defer p.fn_only_data_visit.this_class_static_ref = old_this; - // We need to explicitly assign the name to the property initializer if it - // will be transformed such that it is no longer an inline initializer. - var name_to_keep: ?string = null; - if (is_private) {} else if (!property.flags.is_method and !property.flags.is_computed) { - if (property.key) |key| { - if (@as(Expr.Tag, key.data) == .e_string) { - name_to_keep = key.data.e_string.string(p.allocator) catch unreachable; + // We need to explicitly assign the name to the property initializer if it + // will be transformed such that it is no longer an inline initializer. + var name_to_keep: ?string = null; + if (is_private) {} else if (!property.flags.is_method and !property.flags.is_computed) { + if (property.key) |key| { + if (@as(Expr.Tag, key.data) == .e_string) { + name_to_keep = key.data.e_string.string(p.allocator) catch unreachable; + } } } - } - if (property.value) |val| { - if (name_to_keep) |name| { - const was_anon = p.isAnonymousNamedExpr(val); - property.value = p.maybeKeepExprSymbolName(p.visitExpr(val), name, was_anon); - } else { - property.value = p.visitExpr(val); + if (property.value) |val| { + if (name_to_keep) |name| { + const was_anon = p.isAnonymousNamedExpr(val); + property.value = p.maybeKeepExprSymbolName(p.visitExpr(val), name, was_anon); + } else { + property.value = p.visitExpr(val); + } } - } - if (property.initializer) |val| { - // if (property.flags.is_static and ) - if (name_to_keep) |name| { - const was_anon = p.isAnonymousNamedExpr(val); - property.initializer = p.maybeKeepExprSymbolName(p.visitExpr(val), name, was_anon); - } else { - property.initializer = p.visitExpr(val); + if (property.initializer) |val| { + // if (property.flags.is_static and ) + if (name_to_keep) |name| { + const was_anon = p.isAnonymousNamedExpr(val); + property.initializer = p.maybeKeepExprSymbolName(p.visitExpr(val), name, was_anon); + } else { + property.initializer = p.visitExpr(val); + } } } - } - if (!shadow_ref.eql(Ref.None)) { - if (p.symbols.items[shadow_ref.inner_index].use_count_estimate == 0) { - // Don't generate a shadowing name if one isn't needed - shadow_ref = Ref.None; - } else if (class.class_name) |class_name| { - // If there was originally no class name but something inside needed one - // (e.g. there was a static property initializer that referenced "this"), - // store our generated name so the class expression ends up with a name. - class.class_name = LocRef{ .loc = name_scope_loc, .ref = class_name_ref }; - p.current_scope.generated.append(class_name_ref) catch unreachable; - p.recordDeclaredSymbol(class_name_ref) catch unreachable; + if (!shadow_ref.eql(Ref.None)) { + if (p.symbols.items[shadow_ref.inner_index].use_count_estimate == 0) { + // Don't generate a shadowing name if one isn't needed + shadow_ref = Ref.None; + } else if (class.class_name) |class_name| { + // If there was originally no class name but something inside needed one + // (e.g. there was a static property initializer that referenced "this"), + // store our generated name so the class expression ends up with a name. + class.class_name = LocRef{ .loc = name_scope_loc, .ref = class_name_ref }; + p.current_scope.generated.append(class_name_ref) catch unreachable; + p.recordDeclaredSymbol(class_name_ref) catch unreachable; + } } + + return shadow_ref; } - return shadow_ref; - } + fn keepStmtSymbolName(p: *P, loc: logger.Loc, ref: Ref, name: string) Stmt { + p.expr_list.ensureUnusedCapacity(2) catch unreachable; + const start = p.expr_list.items.len; + p.expr_list.appendAssumeCapacity(p.e(E.Identifier{ + .ref = ref, + }, loc)); + p.expr_list.appendAssumeCapacity(p.e(E.String{ .utf8 = name }, loc)); + return p.s(S.SExpr{ + // I believe that this is a spot we can do $RefreshReg$(name) + .value = p.callRuntime(loc, "__name", p.expr_list.items[start..p.expr_list.items.len]), + + // Make sure tree shaking removes this if the function is never used + .does_not_affect_tree_shaking = true, + }, loc); + } - fn keepStmtSymbolName(p: *P, loc: logger.Loc, ref: Ref, name: string) Stmt { - p.expr_list.ensureUnusedCapacity(2) catch unreachable; - const start = p.expr_list.items.len; - p.expr_list.appendAssumeCapacity(p.e(E.Identifier{ - .ref = ref, - }, loc)); - p.expr_list.appendAssumeCapacity(p.e(E.String{ .utf8 = name }, loc)); - return p.s(S.SExpr{ - // I believe that this is a spot we can do $RefreshReg$(name) - .value = p.callRuntime(loc, "__name", p.expr_list.items[start..p.expr_list.items.len]), - - // Make sure tree shaking removes this if the function is never used - .does_not_affect_tree_shaking = true, - }, loc); - } + pub fn callRuntime(p: *P, loc: logger.Loc, comptime name: string, args: []Expr) Expr { + var ref: Ref = undefined; - pub fn callRuntime(p: *P, loc: logger.Loc, comptime name: string, args: []Expr) Expr { - var ref: Ref = undefined; + if (!p.runtime_imports.contains(name)) { + ref = p.newSymbol(.other, name) catch unreachable; + p.module_scope.generated.append(ref) catch unreachable; + p.runtime_imports.put(name, ref); + } else { + ref = p.runtime_imports.at(name).?; + } - if (!p.runtime_imports.contains(name)) { - ref = p.newSymbol(.other, name) catch unreachable; - p.module_scope.generated.append(ref) catch unreachable; - p.runtime_imports.put(name, ref); - } else { - ref = p.runtime_imports.at(name).?; + p.recordUsage(ref); + return p.e(E.Call{ + .target = p.e(E.Identifier{ + .ref = ref, + }, loc), + .args = args, + }, loc); } - p.recordUsage(ref); - return p.e(E.Call{ - .target = p.e(E.Identifier{ - .ref = ref, - }, loc), - .args = args, - }, loc); - } + // Try separating the list for appending, so that it's not a pointer. + fn visitStmts(p: *P, stmts: *List(Stmt), kind: StmtsKind) !void { + // Save the current control-flow liveness. This represents if we are + // currently inside an "if (false) { ... }" block. + var old_is_control_flow_dead = p.is_control_flow_dead; + defer p.is_control_flow_dead = old_is_control_flow_dead; - // Try separating the list for appending, so that it's not a pointer. - fn visitStmts(p: *P, stmts: *List(Stmt), kind: StmtsKind) !void { - // Save the current control-flow liveness. This represents if we are - // currently inside an "if (false) { ... }" block. - var old_is_control_flow_dead = p.is_control_flow_dead; - defer p.is_control_flow_dead = old_is_control_flow_dead; - - // visit all statements first - var visited = try List(Stmt).initCapacity(p.allocator, stmts.items.len); - var before = List(Stmt).init(p.allocator); - var after = List(Stmt).init(p.allocator); - defer before.deinit(); - defer visited.deinit(); - defer after.deinit(); - - for (stmts.items) |*stmt, i| { - const list = list_getter: { - switch (stmt.data) { - .s_export_equals => { - // TypeScript "export = value;" becomes "module.exports = value;". This - // must happen at the end after everything is parsed because TypeScript - // moves this statement to the end when it generates code. - break :list_getter &after; - }, - .s_function => |data| { - // Manually hoist block-level function declarations to preserve semantics. - // This is only done for function declarations that are not generators - // or async functions, since this is a backwards-compatibility hack from - // Annex B of the JavaScript standard. - if (!p.current_scope.kindStopsHoisting() and p.symbols.items[data.func.name.?.ref.?.inner_index].kind == .hoisted_function) { - break :list_getter &before; - } - }, - else => {}, - } - break :list_getter &visited; - }; + // visit all statements first + var visited = try List(Stmt).initCapacity(p.allocator, stmts.items.len); + var before = List(Stmt).init(p.allocator); + var after = List(Stmt).init(p.allocator); + defer before.deinit(); + defer visited.deinit(); + defer after.deinit(); - try p.visitAndAppendStmt(list, stmt); - } + for (stmts.items) |*stmt, i| { + const list = list_getter: { + switch (stmt.data) { + .s_export_equals => { + // TypeScript "export = value;" becomes "module.exports = value;". This + // must happen at the end after everything is parsed because TypeScript + // moves this statement to the end when it generates code. + break :list_getter &after; + }, + .s_function => |data| { + // Manually hoist block-level function declarations to preserve semantics. + // This is only done for function declarations that are not generators + // or async functions, since this is a backwards-compatibility hack from + // Annex B of the JavaScript standard. + if (!p.current_scope.kindStopsHoisting() and p.symbols.items[data.func.name.?.ref.?.inner_index].kind == .hoisted_function) { + break :list_getter &before; + } + }, + else => {}, + } + break :list_getter &visited; + }; - var visited_count = visited.items.len; - if (p.is_control_flow_dead) { - var end: usize = 0; - for (visited.items) |item, i| { - if (!SideEffects.shouldKeepStmtInDeadControlFlow(item)) { - continue; - } + try p.visitAndAppendStmt(list, stmt); + } + + var visited_count = visited.items.len; + if (p.is_control_flow_dead) { + var end: usize = 0; + for (visited.items) |item, i| { + if (!SideEffects.shouldKeepStmtInDeadControlFlow(item)) { + continue; + } - visited.items[end] = item; - end += 1; + visited.items[end] = item; + end += 1; + } + visited_count = end; } - visited_count = end; - } - const total_size = visited_count + before.items.len + after.items.len; + const total_size = visited_count + before.items.len + after.items.len; - if (total_size != stmts.items.len) { - try stmts.resize(total_size); - } + if (total_size != stmts.items.len) { + try stmts.resize(total_size); + } - var i: usize = 0; + var i: usize = 0; - for (before.items) |item| { - stmts.items[i] = item; - i += 1; - } + for (before.items) |item| { + stmts.items[i] = item; + i += 1; + } - const visited_slice = visited.items[0..visited_count]; - for (visited_slice) |item| { - stmts.items[i] = item; - i += 1; - } + const visited_slice = visited.items[0..visited_count]; + for (visited_slice) |item| { + stmts.items[i] = item; + i += 1; + } - for (after.items) |item| { - stmts.items[i] = item; - i += 1; + for (after.items) |item| { + stmts.items[i] = item; + i += 1; + } } - } - fn extractDeclsForBinding(binding: Binding, decls: *List(G.Decl)) !void { - switch (binding.data) { - .b_property, .b_missing => {}, - .b_identifier => { - try decls.append(G.Decl{ .binding = binding }); - }, - .b_array => |arr| { - for (arr.items) |item| { - extractDeclsForBinding(item.binding, decls) catch unreachable; - } - }, - .b_object => |obj| { - for (obj.properties) |prop| { - extractDeclsForBinding(prop.value, decls) catch unreachable; - } - }, + fn extractDeclsForBinding(binding: Binding, decls: *List(G.Decl)) !void { + switch (binding.data) { + .b_property, .b_missing => {}, + .b_identifier => { + try decls.append(G.Decl{ .binding = binding }); + }, + .b_array => |arr| { + for (arr.items) |item| { + extractDeclsForBinding(item.binding, decls) catch unreachable; + } + }, + .b_object => |obj| { + for (obj.properties) |prop| { + extractDeclsForBinding(prop.value, decls) catch unreachable; + } + }, + } } - } - // This assumes that the open parenthesis has already been parsed by the caller - pub fn parseParenExpr(p: *P, loc: logger.Loc, level: Level, opts: ParenExprOpts) anyerror!Expr { - var items_list = List(Expr).init(p.allocator); - var errors = DeferredErrors{}; - var arrowArgErrors = DeferredArrowArgErrors{}; - var spread_range = logger.Range{}; - var type_colon_range = logger.Range{}; - var comma_after_spread: ?logger.Loc = null; - - // Push a scope assuming this is an arrow function. It may not be, in which - // case we'll need to roll this change back. This has to be done ahead of - // parsing the arguments instead of later on when we hit the "=>" token and - // we know it's an arrow function because the arguments may have default - // values that introduce new scopes and declare new symbols. If this is an - // arrow function, then those new scopes will need to be parented under the - // scope of the arrow function itself. - const scope_index = try p.pushScopeForParsePass(.function_args, loc); - - // Allow "in" inside parentheses - var oldAllowIn = p.allow_in; - p.allow_in = true; - - // Forbid "await" and "yield", but only for arrow functions - var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); - p.fn_or_arrow_data_parse.arrow_arg_errors = arrowArgErrors; - p.fn_or_arrow_data_parse.track_arrow_arg_errors = true; - - // Scan over the comma-separated arguments or expressions - while (p.lexer.token != .t_close_paren) { - const item_loc = p.lexer.loc(); - const is_spread = p.lexer.token == .t_dot_dot_dot; - - if (is_spread) { - spread_range = p.lexer.range(); - // p.markSyntaxFeature() - try p.lexer.next(); - } + // This assumes that the open parenthesis has already been parsed by the caller + pub fn parseParenExpr(p: *P, loc: logger.Loc, level: Level, opts: ParenExprOpts) anyerror!Expr { + var items_list = List(Expr).init(p.allocator); + var errors = DeferredErrors{}; + var arrowArgErrors = DeferredArrowArgErrors{}; + var spread_range = logger.Range{}; + var type_colon_range = logger.Range{}; + var comma_after_spread: ?logger.Loc = null; - // We don't know yet whether these are arguments or expressions, so parse - p.latest_arrow_arg_loc = p.lexer.loc(); + // Push a scope assuming this is an arrow function. It may not be, in which + // case we'll need to roll this change back. This has to be done ahead of + // parsing the arguments instead of later on when we hit the "=>" token and + // we know it's an arrow function because the arguments may have default + // values that introduce new scopes and declare new symbols. If this is an + // arrow function, then those new scopes will need to be parented under the + // scope of the arrow function itself. + const scope_index = try p.pushScopeForParsePass(.function_args, loc); - var item = try p.parseExprOrBindings(.comma, &errors); + // Allow "in" inside parentheses + var oldAllowIn = p.allow_in; + p.allow_in = true; - if (is_spread) { - item = p.e(E.Spread{ .value = item }, loc); - } + // Forbid "await" and "yield", but only for arrow functions + var old_fn_or_arrow_data = std.mem.toBytes(p.fn_or_arrow_data_parse); + p.fn_or_arrow_data_parse.arrow_arg_errors = arrowArgErrors; + p.fn_or_arrow_data_parse.track_arrow_arg_errors = true; - // Skip over types - if (p.options.ts and p.lexer.token == .t_colon) { - type_colon_range = p.lexer.range(); - try p.lexer.next(); - try p.skipTypeScriptType(.lowest); - } + // Scan over the comma-separated arguments or expressions + while (p.lexer.token != .t_close_paren) { + const item_loc = p.lexer.loc(); + const is_spread = p.lexer.token == .t_dot_dot_dot; - // There may be a "=" after the type (but not after an "as" cast) - if (p.options.ts and p.lexer.token == .t_equals and !p.forbid_suffix_after_as_loc.eql(p.lexer.loc())) { - try p.lexer.next(); - item = Expr.assign(item, try p.parseExpr(.comma), p.allocator); - } + if (is_spread) { + spread_range = p.lexer.range(); + // p.markSyntaxFeature() + try p.lexer.next(); + } - items_list.append(item) catch unreachable; + // We don't know yet whether these are arguments or expressions, so parse + p.latest_arrow_arg_loc = p.lexer.loc(); - if (p.lexer.token != .t_comma) { - break; - } + var item = try p.parseExprOrBindings(.comma, &errors); - // Spread arguments must come last. If there's a spread argument followed - if (is_spread) { - comma_after_spread = p.lexer.loc(); - } + if (is_spread) { + item = p.e(E.Spread{ .value = item }, loc); + } - // Eat the comma token - try p.lexer.next(); - } - var items = if (items_list.capacity > 0) items_list.toOwnedSlice() else &([_]Expr{}); + // Skip over types + if (is_typescript_enabled and p.lexer.token == .t_colon) { + type_colon_range = p.lexer.range(); + try p.lexer.next(); + try p.skipTypeScriptType(.lowest); + } - // The parenthetical construct must end with a close parenthesis - try p.lexer.expect(.t_close_paren); + // There may be a "=" after the type (but not after an "as" cast) + if (is_typescript_enabled and p.lexer.token == .t_equals and !p.forbid_suffix_after_as_loc.eql(p.lexer.loc())) { + try p.lexer.next(); + item = Expr.assign(item, try p.parseExpr(.comma), p.allocator); + } - // Restore "in" operator status before we parse the arrow function body - p.allow_in = oldAllowIn; + items_list.append(item) catch unreachable; - // Also restore "await" and "yield" expression errors - p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); + if (p.lexer.token != .t_comma) { + break; + } - // Are these arguments to an arrow function? - if (p.lexer.token == .t_equals_greater_than or opts.force_arrow_fn or (p.options.ts and p.lexer.token == .t_colon)) { - // Arrow functions are not allowed inside certain expressions - if (level.gt(.assign)) { - try p.lexer.unexpected(); - return error.SyntaxError; + // Spread arguments must come last. If there's a spread argument followed + if (is_spread) { + comma_after_spread = p.lexer.loc(); + } + + // Eat the comma token + try p.lexer.next(); } + var items = if (items_list.capacity > 0) items_list.toOwnedSlice() else &([_]Expr{}); - var invalidLog = List(logger.Loc).init(p.allocator); - var args = List(G.Arg).init(p.allocator); + // The parenthetical construct must end with a close parenthesis + try p.lexer.expect(.t_close_paren); - if (opts.is_async) { - // markl,oweredsyntaxpoksdpokasd - } + // Restore "in" operator status before we parse the arrow function body + p.allow_in = oldAllowIn; - // First, try converting the expressions to bindings - for (items) |_, i| { - var is_spread = false; - switch (items[i].data) { - .e_spread => |v| { - is_spread = true; - items[i] = v.value; - }, - else => {}, + // Also restore "await" and "yield" expression errors + p.fn_or_arrow_data_parse = std.mem.bytesToValue(@TypeOf(p.fn_or_arrow_data_parse), &old_fn_or_arrow_data); + + // Are these arguments to an arrow function? + if (p.lexer.token == .t_equals_greater_than or opts.force_arrow_fn or (is_typescript_enabled and p.lexer.token == .t_colon)) { + // Arrow functions are not allowed inside certain expressions + if (level.gt(.assign)) { + try p.lexer.unexpected(); + return error.SyntaxError; } - const tuple = p.convertExprToBindingAndInitializer(&items[i], &invalidLog, is_spread); - // double allocations - args.append(G.Arg{ - .binding = tuple.binding orelse Binding{ .data = Prefill.Data.BMissing, .loc = items[i].loc }, - .default = tuple.expr, - }) catch unreachable; - } + var invalidLog = List(logger.Loc).init(p.allocator); + var args = List(G.Arg).init(p.allocator); - // Avoid parsing TypeScript code like "a ? (1 + 2) : (3 + 4)" as an arrow - // function. The ":" after the ")" may be a return type annotation, so we - // attempt to convert the expressions to bindings first before deciding - // whether this is an arrow function, and only pick an arrow function if - // there were no conversion errors. - if (p.lexer.token == .t_equals_greater_than or (invalidLog.items.len == 0 and p.trySkipTypeScriptArrowReturnTypeWithBacktracking()) or opts.force_arrow_fn) { - p.maybeCommaSpreadError(comma_after_spread); - p.logArrowArgErrors(&arrowArgErrors); + if (opts.is_async) { + // markl,oweredsyntaxpoksdpokasd + } - // Now that we've decided we're an arrow function, report binding pattern - // conversion errors - if (invalidLog.items.len > 0) { - for (invalidLog.items) |_loc| { - try p.log.addError(p.source, _loc, "Invalid binding pattern"); + // First, try converting the expressions to bindings + for (items) |_, i| { + var is_spread = false; + switch (items[i].data) { + .e_spread => |v| { + is_spread = true; + items[i] = v.value; + }, + else => {}, } + + const tuple = p.convertExprToBindingAndInitializer(&items[i], &invalidLog, is_spread); + // double allocations + args.append(G.Arg{ + .binding = tuple.binding orelse Binding{ .data = Prefill.Data.BMissing, .loc = items[i].loc }, + .default = tuple.expr, + }) catch unreachable; } - var arrow_data = FnOrArrowDataParse{ - .allow_await = if (opts.is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, - }; - var arrow = try p.parseArrowBody(args.items, &arrow_data); - arrow.is_async = opts.is_async; - arrow.has_rest_arg = spread_range.len > 0; - p.popScope(); - return p.e(arrow, loc); - } - } - // If we get here, it's not an arrow function so undo the pushing of the - // scope we did earlier. This needs to flatten any child scopes into the - // parent scope as if the scope was never pushed in the first place. - p.popAndFlattenScope(scope_index); + // Avoid parsing TypeScript code like "a ? (1 + 2) : (3 + 4)" as an arrow + // function. The ":" after the ")" may be a return type annotation, so we + // attempt to convert the expressions to bindings first before deciding + // whether this is an arrow function, and only pick an arrow function if + // there were no conversion errors. + if (p.lexer.token == .t_equals_greater_than or (invalidLog.items.len == 0 and p.trySkipTypeScriptArrowReturnTypeWithBacktracking()) or opts.force_arrow_fn) { + p.maybeCommaSpreadError(comma_after_spread); + p.logArrowArgErrors(&arrowArgErrors); - // If this isn't an arrow function, then types aren't allowed - if (type_colon_range.len > 0) { - try p.log.addRangeError(p.source, type_colon_range, "Unexpected \":\""); - return error.SyntaxError; - } + // Now that we've decided we're an arrow function, report binding pattern + // conversion errors + if (invalidLog.items.len > 0) { + for (invalidLog.items) |_loc| { + try p.log.addError(p.source, _loc, "Invalid binding pattern"); + } + } + var arrow_data = FnOrArrowDataParse{ + .allow_await = if (opts.is_async) AwaitOrYield.allow_expr else AwaitOrYield.allow_ident, + }; + var arrow = try p.parseArrowBody(args.items, &arrow_data); + arrow.is_async = opts.is_async; + arrow.has_rest_arg = spread_range.len > 0; + p.popScope(); + return p.e(arrow, loc); + } + } - // Are these arguments for a call to a function named "async"? - if (opts.is_async) { - p.logExprErrors(&errors); - const async_expr = p.e(E.Identifier{ .ref = try p.storeNameInRef("async") }, loc); - return p.e(E.Call{ .target = async_expr, .args = items }, loc); - } + // If we get here, it's not an arrow function so undo the pushing of the + // scope we did earlier. This needs to flatten any child scopes into the + // parent scope as if the scope was never pushed in the first place. + p.popAndFlattenScope(scope_index); - // Is this a chain of expressions and comma operators? - if (items.len > 0) { - p.logExprErrors(&errors); - if (spread_range.len > 0) { - try p.log.addRangeError(p.source, type_colon_range, "Unexpected \"...\""); + // If this isn't an arrow function, then types aren't allowed + if (type_colon_range.len > 0) { + try p.log.addRangeError(p.source, type_colon_range, "Unexpected \":\""); return error.SyntaxError; } - var value = Expr.joinAllWithComma(items, p.allocator); - p.markExprAsParenthesized(&value); - return value; - } + // Are these arguments for a call to a function named "async"? + if (opts.is_async) { + p.logExprErrors(&errors); + const async_expr = p.e(E.Identifier{ .ref = try p.storeNameInRef("async") }, loc); + return p.e(E.Call{ .target = async_expr, .args = items }, loc); + } - // Indicate that we expected an arrow function - try p.lexer.expected(.t_equals_greater_than); - return error.SyntaxError; - } + // Is this a chain of expressions and comma operators? + if (items.len > 0) { + p.logExprErrors(&errors); + if (spread_range.len > 0) { + try p.log.addRangeError(p.source, type_colon_range, "Unexpected \"...\""); + return error.SyntaxError; + } + + var value = Expr.joinAllWithComma(items, p.allocator); + p.markExprAsParenthesized(&value); + return value; + } - // This code is tricky. - // - Doing it incorrectly will cause segfaults. - // - Doing it correctly drastically affects runtime performance while parsing larger files - // The key is in how we remove scopes from the list - // If we do an orderedRemove, it gets very slow. - // swapRemove is fast. But a little more dangerous. - // Instead, we just tombstone it. - pub fn popAndFlattenScope(p: *P, scope_index: usize) void { - // Move up to the parent scope - var to_flatten = p.current_scope; - var parent = to_flatten.parent.?; - p.current_scope = parent; - - // Erase this scope from the order. This will shift over the indices of all - // the scopes that were created after us. However, we shouldn't have to - // worry about other code with outstanding scope indices for these scopes. - // These scopes were all created in between this scope's push and pop - // operations, so they should all be child scopes and should all be popped - // by the time we get here. - p.scopes_in_order.items[scope_index] = null; - // Remove the last child from the parent scope - const last = parent.children.items.len - 1; - assert(parent.children.items[last] == to_flatten); - _ = parent.children.popOrNull(); - - for (to_flatten.children.items) |item| { - item.parent = parent; - parent.children.append(item) catch unreachable; + // Indicate that we expected an arrow function + try p.lexer.expected(.t_equals_greater_than); + return error.SyntaxError; } - } - pub fn maybeCommaSpreadError(p: *P, _comma_after_spread: ?logger.Loc) void { - const comma_after_spread = _comma_after_spread orelse return; - if (comma_after_spread.start == -1) return; + // This code is tricky. + // - Doing it incorrectly will cause segfaults. + // - Doing it correctly drastically affects runtime performance while parsing larger files + // The key is in how we remove scopes from the list + // If we do an orderedRemove, it gets very slow. + // swapRemove is fast. But a little more dangerous. + // Instead, we just tombstone it. + pub fn popAndFlattenScope(p: *P, scope_index: usize) void { + // Move up to the parent scope + var to_flatten = p.current_scope; + var parent = to_flatten.parent.?; + p.current_scope = parent; + + // Erase this scope from the order. This will shift over the indices of all + // the scopes that were created after us. However, we shouldn't have to + // worry about other code with outstanding scope indices for these scopes. + // These scopes were all created in between this scope's push and pop + // operations, so they should all be child scopes and should all be popped + // by the time we get here. + p.scopes_in_order.items[scope_index] = null; + // Remove the last child from the parent scope + const last = parent.children.items.len - 1; + assert(parent.children.items[last] == to_flatten); + _ = parent.children.popOrNull(); + + for (to_flatten.children.items) |item| { + item.parent = parent; + parent.children.append(item) catch unreachable; + } + } + + pub fn maybeCommaSpreadError(p: *P, _comma_after_spread: ?logger.Loc) void { + const comma_after_spread = _comma_after_spread orelse return; + if (comma_after_spread.start == -1) return; + + p.log.addRangeError(p.source, logger.Range{ .loc = comma_after_spread, .len = 1 }, "Unexpected \",\" after rest pattern") catch unreachable; + } + + pub fn toAST(p: *P, _parts: []js_ast.Part, exports_kind: js_ast.ExportsKind, commonjs_wrapper_expr: ?Expr) !js_ast.Ast { + var parts = _parts; + // Insert an import statement for any runtime imports we generated + + var parts_end: usize = 0; + // Handle import paths after the whole file has been visited because we need + // symbol usage counts to be able to remove unused type-only imports in + // TypeScript code. + while (true) { + var kept_import_equals = false; + var removed_import_equals = false; + + var i: usize = 0; + // Potentially remove some statements, then filter out parts to remove any + // with no statements + while (i < parts.len) : (i += 1) { + var part = parts[i]; + p.import_records_for_current_part.shrinkRetainingCapacity(0); + p.declared_symbols.shrinkRetainingCapacity(0); + + var result = try ImportScanner.scan(p, part.stmts); + kept_import_equals = kept_import_equals or result.kept_import_equals; + removed_import_equals = removed_import_equals or result.removed_import_equals; + part.import_record_indices = part.import_record_indices; + part.declared_symbols = p.declared_symbols.toOwnedSlice(); + part.stmts = result.stmts; + if (part.stmts.len > 0) { + if (p.module_scope.contains_direct_eval and part.declared_symbols.len > 0) { + // If this file contains a direct call to "eval()", all parts that + // declare top-level symbols must be kept since the eval'd code may + // reference those symbols. + part.can_be_removed_if_unused = false; + } + parts[parts_end] = part; + parts_end += 1; + } + } + + // We need to iterate multiple times if an import-equals statement was + // removed and there are more import-equals statements that may be removed + if (!kept_import_equals or !removed_import_equals) { + break; + } + } - p.log.addRangeError(p.source, logger.Range{ .loc = comma_after_spread, .len = 1 }, "Unexpected \",\" after rest pattern") catch unreachable; - } + parts = parts[0..parts_end]; + // Do a second pass for exported items now that imported items are filled out + for (parts) |part| { + for (part.stmts) |stmt| { + switch (stmt.data) { + .s_export_clause => |clause| { + for (clause.items) |item| { + if (p.named_imports.getEntry(item.name.ref.?)) |_import| { + _import.value.is_exported = true; + } + } + }, + else => {}, + } + } + } - pub fn toAST(p: *P, _parts: []js_ast.Part, exports_kind: js_ast.ExportsKind, commonjs_wrapper_expr: ?Expr) !js_ast.Ast { - var parts = _parts; - // Insert an import statement for any runtime imports we generated + if (commonjs_wrapper_expr) |commonjs_wrapper| { + var require_function_args = p.allocator.alloc(Arg, 2) catch unreachable; - var parts_end: usize = 0; - // Handle import paths after the whole file has been visited because we need - // symbol usage counts to be able to remove unused type-only imports in - // TypeScript code. - while (true) { - var kept_import_equals = false; - var removed_import_equals = false; + const name_ref = null; + require_function_args[0] = G.Arg{ .binding = p.b(B.Identifier{ .ref = p.module_ref }, logger.Loc.Empty) }; + require_function_args[1] = G.Arg{ .binding = p.b(B.Identifier{ .ref = p.exports_ref }, logger.Loc.Empty) }; + const default_name_loc_ref = LocRef{ .ref = name_ref, .loc = logger.Loc.Empty }; - var i: usize = 0; - // Potentially remove some statements, then filter out parts to remove any - // with no statements - while (i < parts.len) : (i += 1) { - var part = parts[i]; - p.import_records_for_current_part.shrinkRetainingCapacity(0); - p.declared_symbols.shrinkRetainingCapacity(0); - - var result = try ImportScanner.scan(p, part.stmts); - kept_import_equals = kept_import_equals or result.kept_import_equals; - removed_import_equals = removed_import_equals or result.removed_import_equals; - part.import_record_indices = part.import_record_indices; - part.declared_symbols = p.declared_symbols.toOwnedSlice(); - part.stmts = result.stmts; - if (part.stmts.len > 0) { - if (p.module_scope.contains_direct_eval and part.declared_symbols.len > 0) { - // If this file contains a direct call to "eval()", all parts that - // declare top-level symbols must be kept since the eval'd code may - // reference those symbols. - part.can_be_removed_if_unused = false; - } - parts[parts_end] = part; - parts_end += 1; - } - } - - // We need to iterate multiple times if an import-equals statement was - // removed and there are more import-equals statements that may be removed - if (!kept_import_equals or !removed_import_equals) { - break; + commonjs_wrapper.data.e_call.args[0] = p.e( + E.Function{ .func = G.Fn{ + .name = null, + .open_parens_loc = logger.Loc.Empty, + .args = require_function_args, + .body = .{ .loc = logger.Loc.Empty, .stmts = parts[parts.len - 1].stmts }, + .flags = .{ .is_export = true }, + } }, + logger.Loc.Empty, + ); + var sourcefile_name = p.source.path.pretty; + if (strings.lastIndexOf(sourcefile_name, "node_modules")) |node_modules_i| { + // 1 for the separator + const end = node_modules_i + 1 + "node_modules".len; + // If you were to name your file "node_modules.js" it shouldn't appear as ".js" + if (end < sourcefile_name.len) { + sourcefile_name = sourcefile_name[end..]; + } + } + commonjs_wrapper.data.e_call.args[1] = p.e(E.String{ .utf8 = sourcefile_name }, logger.Loc.Empty); + parts[parts.len - 1].stmts = p.allocator.alloc(Stmt, 1) catch unreachable; + parts[parts.len - 1].stmts[0] = p.s( + S.ExportDefault{ + .value = .{ + .expr = commonjs_wrapper, + }, + .default_name = LocRef{ .ref = null, .loc = logger.Loc.Empty }, + }, + logger.Loc.Empty, + ); } - } - parts = parts[0..parts_end]; - // Do a second pass for exported items now that imported items are filled out - for (parts) |part| { - for (part.stmts) |stmt| { - switch (stmt.data) { - .s_export_clause => |clause| { - for (clause.items) |item| { - if (p.named_imports.getEntry(item.name.ref.?)) |_import| { - _import.value.is_exported = true; + { + // Map locals to parts + p.top_level_symbol_to_parts = @TypeOf(p.top_level_symbol_to_parts).init(p.allocator); + var i: usize = 0; + while (i < parts.len) : (i += 1) { + const part = parts[i]; + for (part.declared_symbols) |declared| { + if (declared.is_top_level) { + if (p.top_level_symbol_to_parts.contains(declared.ref)) { + try p.top_level_symbol_to_parts.get(declared.ref).?.append(@intCast(u32, i)); + } else { + var list = try List(u32).initCapacity(p.allocator, 1); + list.appendAssumeCapacity(@intCast(u32, i)); + try p.top_level_symbol_to_parts.put(declared.ref, list); } } - }, - else => {}, + } } - } - } - - if (commonjs_wrapper_expr) |commonjs_wrapper| { - var require_function_args = p.allocator.alloc(Arg, 2) catch unreachable; - - const name_ref = null; - require_function_args[0] = G.Arg{ .binding = p.b(B.Identifier{ .ref = p.module_ref }, logger.Loc.Empty) }; - require_function_args[1] = G.Arg{ .binding = p.b(B.Identifier{ .ref = p.exports_ref }, logger.Loc.Empty) }; - const default_name_loc_ref = LocRef{ .ref = name_ref, .loc = logger.Loc.Empty }; - commonjs_wrapper.data.e_call.args[0] = p.e( - E.Function{ .func = G.Fn{ - .name = null, - .open_parens_loc = logger.Loc.Empty, - .args = require_function_args, - .body = .{ .loc = logger.Loc.Empty, .stmts = parts[parts.len - 1].stmts }, - .flags = .{ .is_export = true }, - } }, - logger.Loc.Empty, - ); - var sourcefile_name = p.source.path.pretty; - if (strings.lastIndexOf(sourcefile_name, "node_modules")) |node_modules_i| { - // 1 for the separator - const end = node_modules_i + 1 + "node_modules".len; - // If you were to name your file "node_modules.js" it shouldn't appear as ".js" - if (end < sourcefile_name.len) { - sourcefile_name = sourcefile_name[end..]; - } + // Each part tracks the other parts it depends on within this file + // var local_dependencies = AutoHashMap(u32, u32).init(p.allocator); + + i = 0; + // while (i < parts.len) : (i += 1) { + // const part = parts[i]; + // if (part.symbol_uses.count() > 0) { + // var iter = part.symbol_uses.iterator(); + // var dependencies = List(js_ast.Dependency).init(p.allocator); + // while (iter.next()) |entry| { + // const ref = entry.key; + + // if (p.top_level_symbol_to_parts.get(ref)) |tlstp| { + // for (tlstp.items) |other_part_index| { + // if (!local_dependencies.contains(other_part_index) or other_part_index != i) { + // try local_dependencies.put(other_part_index, @intCast(u32, i)); + // try dependencies.append(js_ast.Dependency{ + // .source_index = p.source.index, + // .part_index = other_part_index, + // }); + // } + // } + // } + + // // Also map from imports to parts that use them + // // TODO: will appending to this list like this be a perf issue? + // if (p.named_imports.getEntry(ref)) |named_import_entry| { + // const named_import = named_import_entry.value; + // var buf = try p.allocator.alloc(u32, named_import.local_parts_with_uses.len + 1); + // if (named_import.local_parts_with_uses.len > 0) { + // std.mem.copy(u32, buf, named_import.local_parts_with_uses); + // } + // buf[buf.len - 1] = @intCast(u32, i); + // named_import_entry.value.local_parts_with_uses = buf; + // } + // } + // } + // } } - commonjs_wrapper.data.e_call.args[1] = p.e(E.String{ .utf8 = sourcefile_name }, logger.Loc.Empty); - parts[parts.len - 1].stmts = p.allocator.alloc(Stmt, 1) catch unreachable; - parts[parts.len - 1].stmts[0] = p.s( - S.ExportDefault{ - .value = .{ - .expr = commonjs_wrapper, - }, - .default_name = LocRef{ .ref = null, .loc = logger.Loc.Empty }, - }, - logger.Loc.Empty, - ); - } - { - // Map locals to parts - p.top_level_symbol_to_parts = @TypeOf(p.top_level_symbol_to_parts).init(p.allocator); - var i: usize = 0; - while (i < parts.len) : (i += 1) { - const part = parts[i]; - for (part.declared_symbols) |declared| { - if (declared.is_top_level) { - if (p.top_level_symbol_to_parts.contains(declared.ref)) { - try p.top_level_symbol_to_parts.get(declared.ref).?.append(@intCast(u32, i)); - } else { - var list = try List(u32).initCapacity(p.allocator, 1); - list.appendAssumeCapacity(@intCast(u32, i)); - try p.top_level_symbol_to_parts.put(declared.ref, list); - } - } - } - } - - // Each part tracks the other parts it depends on within this file - // var local_dependencies = AutoHashMap(u32, u32).init(p.allocator); - - i = 0; - // while (i < parts.len) : (i += 1) { - // const part = parts[i]; - // if (part.symbol_uses.count() > 0) { - // var iter = part.symbol_uses.iterator(); - // var dependencies = List(js_ast.Dependency).init(p.allocator); - // while (iter.next()) |entry| { - // const ref = entry.key; - - // if (p.top_level_symbol_to_parts.get(ref)) |tlstp| { - // for (tlstp.items) |other_part_index| { - // if (!local_dependencies.contains(other_part_index) or other_part_index != i) { - // try local_dependencies.put(other_part_index, @intCast(u32, i)); - // try dependencies.append(js_ast.Dependency{ - // .source_index = p.source.index, - // .part_index = other_part_index, - // }); - // } - // } - // } - - // // Also map from imports to parts that use them - // // TODO: will appending to this list like this be a perf issue? - // if (p.named_imports.getEntry(ref)) |named_import_entry| { - // const named_import = named_import_entry.value; - // var buf = try p.allocator.alloc(u32, named_import.local_parts_with_uses.len + 1); - // if (named_import.local_parts_with_uses.len > 0) { - // std.mem.copy(u32, buf, named_import.local_parts_with_uses); - // } - // buf[buf.len - 1] = @intCast(u32, i); - // named_import_entry.value.local_parts_with_uses = buf; - // } - // } - // } - // } + return js_ast.Ast{ + .runtime_imports = p.runtime_imports, + .parts = parts, + .module_scope = p.module_scope.*, + .symbols = p.symbols.items, + .exports_ref = p.exports_ref, + .wrapper_ref = null, + .import_records = p.import_records.items, + .export_star_import_records = p.export_star_import_records.items, + .top_level_symbol_to_parts = p.top_level_symbol_to_parts, + .approximate_line_count = p.lexer.approximate_newline_count + 1, + .exports_kind = exports_kind, + .named_imports = p.named_imports, + .named_exports = p.named_exports, + .import_keyword = p.es6_import_keyword, + .export_keyword = p.es6_export_keyword, + // .top_Level_await_keyword = p.top_level_await_keyword, + }; } - return js_ast.Ast{ - .runtime_imports = p.runtime_imports, - .parts = parts, - .module_scope = p.module_scope.*, - .symbols = p.symbols.items, - .exports_ref = p.exports_ref, - .wrapper_ref = null, - .import_records = p.import_records.items, - .export_star_import_records = p.export_star_import_records.items, - .top_level_symbol_to_parts = p.top_level_symbol_to_parts, - .approximate_line_count = p.lexer.approximate_newline_count + 1, - .exports_kind = exports_kind, - .named_imports = p.named_imports, - .named_exports = p.named_exports, - .import_keyword = p.es6_import_keyword, - .export_keyword = p.es6_export_keyword, - // .top_Level_await_keyword = p.top_level_await_keyword, - }; - } + pub fn init(allocator: *std.mem.Allocator, log: *logger.Log, source: *const logger.Source, define: *Define, lexer: js_lexer.Lexer, opts: Parser.Options) !*P { + var scope_order = try ScopeOrderList.initCapacity(allocator, 1); + var scope = try allocator.create(Scope); + scope.* = Scope{ + .members = @TypeOf(scope.members).init(allocator), + .children = @TypeOf(scope.children).init( + allocator, + ), + .generated = @TypeOf(scope.generated).init(allocator), + .kind = .entry, + .label_ref = null, + .parent = null, + }; - pub fn init(allocator: *std.mem.Allocator, log: *logger.Log, source: *const logger.Source, define: *Define, lexer: js_lexer.Lexer, opts: Parser.Options) !*P { - var scope_order = try ScopeOrderList.initCapacity(allocator, 1); - var scope = try allocator.create(Scope); - scope.* = Scope{ - .members = @TypeOf(scope.members).init(allocator), - .children = @TypeOf(scope.children).init( - allocator, - ), - .generated = @TypeOf(scope.generated).init(allocator), - .kind = .entry, - .label_ref = null, - .parent = null, - }; + scope_order.appendAssumeCapacity(ScopeOrder{ .loc = locModuleScope, .scope = scope }); + + var _parser = try allocator.create(P); + + _parser.* = P{ + .cjs_import_stmts = @TypeOf(_parser.cjs_import_stmts).init(allocator), + // This must default to true or else parsing "in" won't work right. + // It will fail for the case in the "in-keyword.js" file + .allow_in = true, + + .symbol_uses = SymbolUseMap.init(allocator), + .call_target = nullExprData, + .delete_target = nullExprData, + .stmt_expr_value = nullExprData, + .expr_list = List(Expr).init(allocator), + .loop_body = nullStmtData, + .injected_define_symbols = @TypeOf(_parser.injected_define_symbols).init(allocator), + .emitted_namespace_vars = @TypeOf(_parser.emitted_namespace_vars).init(allocator), + .is_exported_inside_namespace = @TypeOf(_parser.is_exported_inside_namespace).init(allocator), + .known_enum_values = @TypeOf(_parser.known_enum_values).init(allocator), + .local_type_names = @TypeOf(_parser.local_type_names).init(allocator), + .allocated_names = @TypeOf(_parser.allocated_names).init(allocator), + .define = define, + .scopes_for_current_part = @TypeOf(_parser.scopes_for_current_part).init(allocator), + .symbols = @TypeOf(_parser.symbols).init(allocator), + .ts_use_counts = @TypeOf(_parser.ts_use_counts).init(allocator), + .declared_symbols = @TypeOf(_parser.declared_symbols).init(allocator), + .import_records = @TypeOf(_parser.import_records).init(allocator), + .import_records_for_current_part = @TypeOf(_parser.import_records_for_current_part).init(allocator), + .export_star_import_records = @TypeOf(_parser.export_star_import_records).init(allocator), + .import_items_for_namespace = @TypeOf(_parser.import_items_for_namespace).init(allocator), + .named_imports = @TypeOf(_parser.named_imports).init(allocator), + .named_exports = @TypeOf(_parser.named_exports).init(allocator), + .top_level_symbol_to_parts = @TypeOf(_parser.top_level_symbol_to_parts).init(allocator), + .import_namespace_cc_map = @TypeOf(_parser.import_namespace_cc_map).init(allocator), + .scopes_in_order = scope_order, + .current_scope = scope, + .temp_refs_to_declare = @TypeOf(_parser.temp_refs_to_declare).init(allocator), + .relocated_top_level_vars = @TypeOf(_parser.relocated_top_level_vars).init(allocator), + .log = log, + .is_import_item = @TypeOf(_parser.is_import_item).init(allocator), + .allocator = allocator, + .options = opts, + .then_catch_chain = ThenCatchChain{ .next_target = nullExprData }, + .to_expr_wrapper_namespace = Binding2ExprWrapper.Namespace.init(_parser), + .to_expr_wrapper_hoisted = Binding2ExprWrapper.Hoisted.init(_parser), + .source = source, + .import_transposer = @TypeOf(_parser.import_transposer).init(_parser), + .require_transposer = @TypeOf(_parser.require_transposer).init(_parser), + .require_resolve_transposer = @TypeOf(_parser.require_resolve_transposer).init(_parser), + .lexer = lexer, + }; - scope_order.appendAssumeCapacity(ScopeOrder{ .loc = locModuleScope, .scope = scope }); - - var _parser = try allocator.create(P); - - _parser.* = P{ - .cjs_import_stmts = @TypeOf(_parser.cjs_import_stmts).init(allocator), - // This must default to true or else parsing "in" won't work right. - // It will fail for the case in the "in-keyword.js" file - .allow_in = true, - - .symbol_uses = SymbolUseMap.init(allocator), - .call_target = nullExprData, - .delete_target = nullExprData, - .stmt_expr_value = nullExprData, - .expr_list = List(Expr).init(allocator), - .loop_body = nullStmtData, - .injected_define_symbols = @TypeOf(_parser.injected_define_symbols).init(allocator), - .emitted_namespace_vars = @TypeOf(_parser.emitted_namespace_vars).init(allocator), - .is_exported_inside_namespace = @TypeOf(_parser.is_exported_inside_namespace).init(allocator), - .known_enum_values = @TypeOf(_parser.known_enum_values).init(allocator), - .local_type_names = @TypeOf(_parser.local_type_names).init(allocator), - .allocated_names = @TypeOf(_parser.allocated_names).init(allocator), - .define = define, - .scopes_for_current_part = @TypeOf(_parser.scopes_for_current_part).init(allocator), - .symbols = @TypeOf(_parser.symbols).init(allocator), - .ts_use_counts = @TypeOf(_parser.ts_use_counts).init(allocator), - .declared_symbols = @TypeOf(_parser.declared_symbols).init(allocator), - .import_records = @TypeOf(_parser.import_records).init(allocator), - .import_records_for_current_part = @TypeOf(_parser.import_records_for_current_part).init(allocator), - .export_star_import_records = @TypeOf(_parser.export_star_import_records).init(allocator), - .import_items_for_namespace = @TypeOf(_parser.import_items_for_namespace).init(allocator), - .named_imports = @TypeOf(_parser.named_imports).init(allocator), - .named_exports = @TypeOf(_parser.named_exports).init(allocator), - .top_level_symbol_to_parts = @TypeOf(_parser.top_level_symbol_to_parts).init(allocator), - .import_namespace_cc_map = @TypeOf(_parser.import_namespace_cc_map).init(allocator), - .scopes_in_order = scope_order, - .current_scope = scope, - .temp_refs_to_declare = @TypeOf(_parser.temp_refs_to_declare).init(allocator), - .relocated_top_level_vars = @TypeOf(_parser.relocated_top_level_vars).init(allocator), - .log = log, - .is_import_item = @TypeOf(_parser.is_import_item).init(allocator), - .allocator = allocator, - .options = opts, - .then_catch_chain = ThenCatchChain{ .next_target = nullExprData }, - .to_expr_wrapper_namespace = Binding2ExprWrapper.Namespace.init(_parser), - .to_expr_wrapper_hoisted = Binding2ExprWrapper.Hoisted.init(_parser), - .source = source, - .import_transposer = @TypeOf(_parser.import_transposer).init(_parser), - .require_transposer = @TypeOf(_parser.require_transposer).init(_parser), - .require_resolve_transposer = @TypeOf(_parser.require_resolve_transposer).init(_parser), - .lexer = lexer, - }; + return _parser; + } + }; +} - return _parser; - } -}; +// Doing this seems to yield a 1% performance improvement parsing larger files +// ❯ hyperfine "../../build/macos-x86_64/esdev node_modules/react-dom/cjs/react-dom.development.js --resolve=disable" "../../esdev.before-comptime-js-parser node_modules/react-dom/cjs/react-dom.development.js --resolve=disable" --min-runs=500 +// Benchmark #1: ../../build/macos-x86_64/esdev node_modules/react-dom/cjs/react-dom.development.js --resolve=disable +// Time (mean ± σ): 25.1 ms ± 1.1 ms [User: 20.4 ms, System: 3.1 ms] +// Range (min … max): 23.5 ms … 31.7 ms 500 runs + +// Benchmark #2: ../../esdev.before-comptime-js-parser node_modules/react-dom/cjs/react-dom.development.js --resolve=disable +// Time (mean ± σ): 25.6 ms ± 1.3 ms [User: 20.9 ms, System: 3.1 ms] +// Range (min … max): 24.1 ms … 39.7 ms 500 runs +// '../../build/macos-x86_64/esdev node_modules/react-dom/cjs/react-dom.development.js --resolve=disable' ran +// 1.02 ± 0.07 times faster than '../../esdev.before-comptime-js-parser node_modules/react-dom/cjs/react-dom.development.js --resolve=disable' +const JavaScriptParser = NewParser(false, false); +const JSXParser = NewParser(false, true); +const TSXParser = NewParser(true, true); +const TypeScriptParser = NewParser(true, false); // The "await" and "yield" expressions are never allowed in argument lists but // may or may not be allowed otherwise depending on the details of the enclosing |