Spec fix as BindExpression only have a single object/callee not an Array (#436) [skip ci]
* Fixed spec.md to reflect that BindExpressions only have a single node not an array for their properties * Added semicolons to BindExpression props
This commit is contained in:
parent
b08fdf87e8
commit
23ff45fcfa
@ -855,8 +855,8 @@ A member expression. If `computed` is `true`, the node corresponds to a computed
|
||||
```js
|
||||
interface BindExpression <: Expression {
|
||||
type: "BindExpression";
|
||||
object: [ Expression | null ];
|
||||
callee: [ Expression ]
|
||||
object: Expression | null;
|
||||
callee: Expression;
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user