Skip to content

Commit

Permalink
Eliminate redundancy in ES6 AssignmentExpression
Browse files Browse the repository at this point in the history
Now that MemberExpression implements Pattern (see dfb7d88), it is redundant to say that an assignment's left-hand side can be either a pattern or a member expression.
  • Loading branch information
zjmiller committed Jan 15, 2016
1 parent a550eae commit 1cb8600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es6.md
Expand Up @@ -120,7 +120,7 @@ Spread expression, e.g., `[head, ...iter, tail]`, `f(head, ...iter, ...tail)`.

```js
extend interface AssignmentExpression {
left: Pattern | MemberExpression;
left: Pattern;
}
```

Expand Down

0 comments on commit 1cb8600

Please sign in to comment.