This commit is contained in:
Andrey Breslav
2010-12-10 19:38:40 +03:00
parent 3d2686d9fd
commit 8114444f34
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ binaryOperation // Decreasing precedence
assignmentOperator
: "="
: "+=" : "-=" : "*=" : "/=" // TODO: |=, %= and <<= make more sense than |, % or << alone, and so for others
: "+=" : "-=" : "*=" : "/=" : "%="// TODO: |=, %= and <<= make more sense than |, % or << alone, and so for others
;
assignment
+1 -1
View File
@@ -19,7 +19,7 @@ NoEscapeString : /* """-quoted string */;
<= >= == != === !==
+ - * / %
=
+= -= *= /=
+= -= *= /= %=
++ -- !
&& || -- may be just & and |
=>