Add missing exponential operators to ast spec (#7663) [skip ci]

This commit is contained in:
hirochachacha
2018-04-05 03:27:19 +09:00
committed by Henry Zhu
parent b051243a63
commit 56cb4baf46

View File

@@ -787,7 +787,7 @@ enum BinaryOperator {
| "<" | "<=" | ">" | ">="
| "<<" | ">>" | ">>>"
| "+" | "-" | "*" | "/" | "%"
| "|" | "^" | "&" | "in"
| "**" | "|" | "^" | "&" | "in"
| "instanceof"
| "|>"
}
@@ -812,7 +812,7 @@ An assignment operator expression.
```js
enum AssignmentOperator {
"=" | "+=" | "-=" | "*=" | "/=" | "%="
"=" | "+=" | "-=" | "*=" | "/=" | "%=" | "**="
| "<<=" | ">>=" | ">>>="
| "|=" | "^=" | "&="
}