From 4d718ef12b20f6cef958b8844d9e32e079463b47 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Tue, 25 Nov 2025 16:36:38 -0800 Subject: [PATCH] keywords are magical --- src/parser/tests/exceptions.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/parser/tests/exceptions.test.ts b/src/parser/tests/exceptions.test.ts index a0708f9..8b18ced 100644 --- a/src/parser/tests/exceptions.test.ts +++ b/src/parser/tests/exceptions.test.ts @@ -155,7 +155,8 @@ describe('try/catch/finally/throw', () => { expect('throw error-object').toMatchTree(` Throw keyword throw - Identifier error-object + FunctionCallOrIdentifier + Identifier error-object `) })