Update page 'Aer v1.0 Specification'

2019-04-11 06:12:07 +02:00
parent 23d22fe3e1
commit 56442054d4

@@ -290,7 +290,7 @@ When an expression contains multiple operators, the precedence of the operators
| 1 | object-related | clone new | non-associative |
| 2 | postfix operators | -> :: [ | left-associative |
| 3 | increment / decrement | ++ -- | non-associative |
| 4 | unary operators | - + ~ ! @ | right-associative |
| 4 | unary operators | - + ~ ! | right-associative |
| 4 | cast operators | (typedef) | right-associative |
| 7 | object-related | instanceof | non-associative |
| 7 | arithmetic operators | * / % | left-associative |
@@ -305,7 +305,7 @@ When an expression contains multiple operators, the precedence of the operators
| 15 | logical and | && | left-associative |
| 16 | logical xor | ^^ | left-associative |
| 17 | logical or | \|\| | left-associative |
| 18 | ternary operator | ? | left-associative |
| 18 | ternary operator | ? : | left-associative |
| 19 | assignment operators | = += -= *= /= %= | right-associative |
| 23 | comma operator | , | left-associative |