Add missing closing parenthesis

This commit is contained in:
Adrian Alic 2023-10-13 15:51:42 +02:00 committed by Amaan Qureshi
parent 92b743cf51
commit 6fd3582ae3
No known key found for this signature in database
GPG key ID: E67890ADC4227273

View file

@ -580,7 +580,7 @@ grammar({
),
binary_expression: $ => choice(
prec.left(1, seq($._expression, 'instanceof', $._expression)
prec.left(1, seq($._expression, 'instanceof', $._expression))
// ...
),