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:
James Browning 2017-05-18 02:25:10 +12:00 committed by Henry Zhu
parent b08fdf87e8
commit 23ff45fcfa

View File

@ -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;
}
```