Merge pull request #4255 from OfekShilon/CppOpFix
Remove 2 java-only operators from c++ tokenizerpull/4304/head
commit
e1a06068e8
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue