Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit ea7f122

Browse files
authored
Add missing assignment operators
1 parent 9f9767d commit ea7f122

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

grammars/javascript.cson

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,9 +1294,13 @@
12941294
'operators':
12951295
'patterns': [
12961296
{
1297-
'match': '%=|\\+=|-=|\\*=|(?<!\\()/='
1297+
'match': '%=|\\+=|-=|\\*=|(?<!\\()/=|\\*\\*='
12981298
'name': 'keyword.operator.assignment.compound.js'
12991299
}
1300+
{
1301+
'match': '&&=|\\?\\?=|\\|\\|='
1302+
'name': 'keyword.operator.assignment.compound.logical.js'
1303+
}
13001304
{
13011305
'match': '&=|\\^=|<<=|>>=|>>>=|\\|='
13021306
'name': 'keyword.operator.assignment.compound.bitwise.js'

0 commit comments

Comments
 (0)