From b540a1f5b63cb54f0184c7a4184896d05169dfbe Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 22:03:05 +0000 Subject: [PATCH 1/2] Initial plan From b32c0597de87442e69d7d69cb38d8f84e6f7aa09 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 22:05:29 +0000 Subject: [PATCH 2/2] Fix trailing whitespace lint error in parser.bench.mjs Co-authored-by: NullVoxPopuli <199018+NullVoxPopuli@users.noreply.github.com> --- tests/parser.bench.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parser.bench.mjs b/tests/parser.bench.mjs index c96f32c..c1d4520 100644 --- a/tests/parser.bench.mjs +++ b/tests/parser.bench.mjs @@ -115,7 +115,7 @@ for (const { type, ext, experimentParse, controlParse } of PARSERS) { for (const size of SIZES) { const code = FIXTURES[type][size]; const opts = { ...PARSE_OPTIONS, filePath: `${size}${ext}` }; - + // Force a full GC before each benchmark group to reduce GC-triggered variance globalThis.gc?.();