diff options
author | 2021-05-02 13:04:55 -0700 | |
---|---|---|
committer | 2021-05-02 13:04:55 -0700 | |
commit | 97cb54de2e2990f4ba41f7b68c2b5113e40f2c2e (patch) | |
tree | 4e8a040d1e33b9f34bad52cfc2d5f58cdda60cb2 /src/js_lexer_tables.zig | |
parent | 3050d5a1a4def6fe90b62854e2252e308f5f708a (diff) | |
download | bun-97cb54de2e2990f4ba41f7b68c2b5113e40f2c2e.tar.gz bun-97cb54de2e2990f4ba41f7b68c2b5113e40f2c2e.tar.zst bun-97cb54de2e2990f4ba41f7b68c2b5113e40f2c2e.zip |
classes work, excluding name and constructor/super
Former-commit-id: 818d0149312b07191340427e5b2990ae6d0cec94
Diffstat (limited to 'src/js_lexer_tables.zig')
-rw-r--r-- | src/js_lexer_tables.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/js_lexer_tables.zig b/src/js_lexer_tables.zig index 4b9977699..7a1bf705e 100644 --- a/src/js_lexer_tables.zig +++ b/src/js_lexer_tables.zig @@ -537,6 +537,7 @@ pub const JSXEntityMap = std.StringHashMap(CodePoint); pub var jsxEntity: JSXEntityMap = undefined; +// There's probably a way to move this to comptime pub fn initJSXEntityMap() !void { jsxEntity = JSXEntityMap.init(alloc.dynamic); // return jsxEntity; |