Skip to content
Snippets Groups Projects
Commit 5e29ee6e authored by Marijn Haverbeke's avatar Marijn Haverbeke
Browse files

[javascript mode] Fix bug in array literal parsing

Closes #4130
parent f8b765b2
No related branches found
No related tags found
No related merge requests found
......@@ -641,7 +641,7 @@ CodeMirror.defineMode("javascript", function(config, parserConfig) {
}
function arrayLiteral(type) {
if (type == "]") return cont();
return pass(expressionNoComma, commasep(expressionNoComma, "]"));
return pass(commasep(expressionNoComma, "]"));
}
function isContinuedStatement(state, textAfter) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment