diff options
author | 2021-05-11 20:49:11 -0700 | |
---|---|---|
committer | 2021-05-11 20:49:11 -0700 | |
commit | 175bbdd3c3ef13c3446fc5712e9dfcf96d387f0a (patch) | |
tree | ebde8e1ca24e04a07f71088ae97b5a8391426115 /src/js_lexer_tables.zig | |
parent | 515172263b54204c63f1e2d454385b956e071821 (diff) | |
download | bun-175bbdd3c3ef13c3446fc5712e9dfcf96d387f0a.tar.gz bun-175bbdd3c3ef13c3446fc5712e9dfcf96d387f0a.tar.zst bun-175bbdd3c3ef13c3446fc5712e9dfcf96d387f0a.zip |
now we do resolver??
Former-commit-id: 8df97221a4592d6a4ba0af9e99338166d39d7c21
Diffstat (limited to 'src/js_lexer_tables.zig')
-rw-r--r-- | src/js_lexer_tables.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_lexer_tables.zig b/src/js_lexer_tables.zig index ef4b13e8c..c6a5d4954 100644 --- a/src/js_lexer_tables.zig +++ b/src/js_lexer_tables.zig @@ -545,7 +545,7 @@ pub fn initJSXEntityMap() !void { } has_loaded_jsx_map = true; - jsxEntity = JSXEntityMap.init(alloc.dynamic); + jsxEntity = JSXEntityMap.init(alloc.static); // return jsxEntity; jsxEntity.ensureCapacity(255) catch unreachable; |