[language-typescript] Add bitwise operators

(could've sworn I did this already)
This commit is contained in:
Andrew Dupont 2024-08-05 18:52:04 -07:00
parent 8090558242
commit af133b04f9

View File

@ -841,6 +841,9 @@
"new" @keyword.operator.new._LANG_
"=" @keyword.operator.assignment._LANG_
["&" "|" "<<" ">>" ">>>" "~" "^"] @keyword.operator.bitwise.js
(non_null_expression "!" @keyword.operator.non-null._LANG_)
(unary_expression "!" @keyword.operator.unary._LANG_)