Merge pull request #4255 from OfekShilon/CppOpFix

Remove 2 java-only operators from c++ tokenizer
pull/4304/head
Henning Dieterichs 1 year ago committed by GitHub
commit e1a06068e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save