Merge pull request #4255 from OfekShilon/CppOpFix

Remove 2 java-only operators from c++ tokenizer
pull/4304/head
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
1 changed files with 1 additions and 3 deletions

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