diff options
author | 2021-05-29 19:55:35 -0700 | |
---|---|---|
committer | 2021-05-29 19:55:35 -0700 | |
commit | 2a54b9f13803a06514c1681464a4a86c0c15f978 (patch) | |
tree | c053cad5df831b5c376f404879c28e6e69d6cc7e /src/js_lexer.zig | |
parent | b5612b303b934b668c35c1a70d64f498b7c62856 (diff) | |
download | bun-2a54b9f13803a06514c1681464a4a86c0c15f978.tar.gz bun-2a54b9f13803a06514c1681464a4a86c0c15f978.tar.zst bun-2a54b9f13803a06514c1681464a4a86c0c15f978.zip |
Revert "WIP"
This reverts commit b5612b303b934b668c35c1a70d64f498b7c62856 [formerly 55dcde581df46b425733508c3923e073ccdf880f].
Former-commit-id: 6c2d19c1b0d4c3e805f90cfeb8282e2c8712578a
Diffstat (limited to 'src/js_lexer.zig')
-rw-r--r-- | src/js_lexer.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_lexer.zig b/src/js_lexer.zig index e725a3a24..fef12bf47 100644 --- a/src/js_lexer.zig +++ b/src/js_lexer.zig @@ -491,7 +491,7 @@ pub const Lexer = struct { } } - pub const InnerStringLiteral = struct { suffix_len: u3, needs_slow_path: bool }; + pub const InnerStringLiteral = packed struct { suffix_len: u3, needs_slow_path: bool }; fn parseStringLiteralInnter(lexer: *LexerType, comptime quote: CodePoint) !InnerStringLiteral { var needs_slow_path = false; var suffix_len: u3 = 1; |