Fix merge error

This commit is contained in:
Daniel Tschinder 2019-03-26 15:44:16 -07:00
parent 6bc9e7ebda
commit 60d7e940e2
No known key found for this signature in database
GPG Key ID: F39CDA308E78179D

View File

@ -959,10 +959,7 @@ export default class StatementParser extends ExpressionParser {
}
node.left = init;
node.right =
type === "ForInStatement"
? this.parseExpression()
: this.parseMaybeAssign();
node.right = isForIn ? this.parseExpression() : this.parseMaybeAssign();
this.expect(tt.parenR);
node.body =