aboutsummaryrefslogtreecommitdiff
path: root/src/js_lexer_tables.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/js_lexer_tables.zig')
-rw-r--r--src/js_lexer_tables.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js_lexer_tables.zig b/src/js_lexer_tables.zig
index 916323f4f..ab6b0f95a 100644
--- a/src/js_lexer_tables.zig
+++ b/src/js_lexer_tables.zig
@@ -178,11 +178,11 @@ pub const Keywords = std.ComptimeStringMap(T, .{
.{ "with", .t_with },
});
-pub const CodePoint = u21;
+pub const CodePoint = i22;
pub const TokenEnumType = std.EnumArray(T, []u8);
-pub const tokenToString: TokenEnumType = comptime {
+pub const tokenToString = comptime {
var TEndOfFile = "end of file".*;
var TSyntaxError = "syntax error".*;
var THashbang = "hashbang comment".*;