Skip to content
This repository was archived by the owner on Apr 10, 2023. It is now read-only.

Commit c41c564

Browse files
committed
chore(parse):
1 parent 4f792e6 commit c41c564

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

lib/parse.js

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -574,17 +574,6 @@ module.exports = function parse(input) {
574574
);
575575
consumeNode(arrayExpression);
576576
}
577-
578-
function consumeSequenceExpression(startIndex) {
579-
expressionStatement.expression = new astFactory.SequenceExpression([
580-
expressionStatement.expression,
581-
]);
582-
while (startIndex < input.length) {
583-
expressionStatement.expression.expressions.push(
584-
parseExpressionStatement(startIndex, input.length)
585-
);
586-
}
587-
}
588577
}
589578
};
590579

0 commit comments

Comments
 (0)