Remove 2 java-only operators from c++ tokenizer

This commit is contained in:
Ofek Shilon 2023-11-12 20:13:57 +02:00
parent 091550e898
commit d38b385382

View file

@ -259,7 +259,6 @@ export const language = <languages.IMonarchLanguage>{
'%', '%',
'<<', '<<',
'>>', '>>',
'>>>',
'+=', '+=',
'-=', '-=',
'*=', '*=',
@ -269,8 +268,7 @@ export const language = <languages.IMonarchLanguage>{
'^=', '^=',
'%=', '%=',
'<<=', '<<=',
'>>=', '>>='
'>>>='
], ],
// we include these common regular expressions // we include these common regular expressions