remove operator property from AssignmentPattern

This commit is contained in:
Sebastian McKenzie
2015-08-05 21:45:11 +01:00
parent 71bbffa797
commit 79c62ded0a
19 changed files with 18 additions and 37 deletions

View File

@@ -152,7 +152,6 @@ pp.parseMaybeDefault = function (startPos, startLoc, left) {
if (!this.eat(tt.eq)) return left;
let node = this.startNodeAt(startPos, startLoc);
node.operator = "=";
node.left = left;
node.right = this.parseMaybeAssign();
return this.finishNode(node, "AssignmentPattern");