Add lacked Javascript operators

This commit is contained in:
delphinus 2020-12-20 21:49:41 +09:00 committed by Kiyan
parent 29782ebdaa
commit 0fc8ea0035

View file

@ -151,6 +151,7 @@
";" @punctuation.delimiter
"." @punctuation.delimiter
"," @punctuation.delimiter
"?." @punctuation.delimiter
(pair ":" @punctuation.delimiter)
@ -181,6 +182,21 @@
"||"
"%"
"%="
"*"
"**"
">>>"
"&"
"|"
"^"
"??"
"*="
">>="
">>>="
"^="
"|="
"&&="
"||="
"??="
] @operator
(binary_expression "/" @operator)