Merge pull request #4255 from OfekShilon/CppOpFix

Remove 2 java-only operators from c++ tokenizer
This commit is contained in:
Henning Dieterichs 2023-12-14 16:06:33 +01:00 committed by GitHub
commit e1a06068e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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