(type)
| 693 | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| 694 | } |
| 695 | function arrayLiteral(type) { |
| 696 | if (type == "]") return cont(); |
| 697 | return pass(commasep(expressionNoComma, "]")); |
| 698 | } |
| 699 | |
| 700 | function isContinuedStatement(state, textAfter) { |
| 701 | return state.lastType == "operator" || state.lastType == "," || |