This commit is contained in:
Jarred Sumner
2021-05-18 20:33:45 -07:00
parent f502d0f1a4
commit 4f1d32be16

View File

@@ -630,7 +630,7 @@ pub const Lexer = struct {
pub const IdentifierKind = enum { normal, private };
pub const ScanResult = struct { token: T, contents: string };
var small_escape_sequence_buffer: [4096]u16 = undefined;
threadlocal var small_escape_sequence_buffer: [4096]u16 = undefined;
const FakeArrayList16 = struct {
items: []u16,
i: usize = 0,