From 23ff45fcfafdf5a61783a60fc74139a0f7465545 Mon Sep 17 00:00:00 2001 From: James Browning Date: Thu, 18 May 2017 02:25:10 +1200 Subject: [PATCH] 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 --- ast/spec.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ast/spec.md b/ast/spec.md index 07c6a6482d..3c49c16a70 100644 --- a/ast/spec.md +++ b/ast/spec.md @@ -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; } ```