refactor(ecma): triple dot should be an operator

This commit is contained in:
Amaan Qureshi 2023-06-08 12:52:21 -04:00
parent 99606fdb71
commit 2c59e0ff3d

View file

@ -199,8 +199,6 @@
; Punctuation ; Punctuation
;------------ ;------------
"..." @punctuation.special
";" @punctuation.delimiter ";" @punctuation.delimiter
"." @punctuation.delimiter "." @punctuation.delimiter
"," @punctuation.delimiter "," @punctuation.delimiter
@ -251,6 +249,7 @@
"&&=" "&&="
"||=" "||="
"??=" "??="
"..."
] @operator ] @operator
(binary_expression "/" @operator) (binary_expression "/" @operator)