remove SequenceExpression user whitespace

This commit is contained in:
Sebastian McKenzie
2014-11-23 18:36:57 +11:00
parent b9da4f988c
commit 55150853b4

View File

@@ -27,8 +27,7 @@ Node.prototype.isUserWhitespacable = function () {
var parent = this.parent;
var node = this.node;
if (t.isUserWhitespacable(node) ||
t.isSequenceExpression(parent)) {
if (t.isUserWhitespacable(node)) {
return true;
}