aboutsummaryrefslogtreecommitdiff
path: root/src/js_lexer.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/js_lexer.zig')
-rw-r--r--src/js_lexer.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js_lexer.zig b/src/js_lexer.zig
index fef12bf47..e725a3a24 100644
--- a/src/js_lexer.zig
+++ b/src/js_lexer.zig
@@ -491,7 +491,7 @@ pub const Lexer = struct {
}
}
- pub const InnerStringLiteral = packed struct { suffix_len: u3, needs_slow_path: bool };
+ pub const InnerStringLiteral = 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;