Add missing exponential operators to ast spec (#7663) [skip ci]
This commit is contained in:
@@ -787,7 +787,7 @@ enum BinaryOperator {
|
||||
| "<" | "<=" | ">" | ">="
|
||||
| "<<" | ">>" | ">>>"
|
||||
| "+" | "-" | "*" | "/" | "%"
|
||||
| "|" | "^" | "&" | "in"
|
||||
| "**" | "|" | "^" | "&" | "in"
|
||||
| "instanceof"
|
||||
| "|>"
|
||||
}
|
||||
@@ -812,7 +812,7 @@ An assignment operator expression.
|
||||
|
||||
```js
|
||||
enum AssignmentOperator {
|
||||
"=" | "+=" | "-=" | "*=" | "/=" | "%="
|
||||
"=" | "+=" | "-=" | "*=" | "/=" | "%=" | "**="
|
||||
| "<<=" | ">>=" | ">>>="
|
||||
| "|=" | "^=" | "&="
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user