(type)
| 818 | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| 819 | } |
| 820 | function arrayLiteral(type) { |
| 821 | if (type == "]") return cont(); |
| 822 | return pass(commasep(expressionNoComma, "]")); |
| 823 | } |
| 824 | function enumdef() { |
| 825 | return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex) |
| 826 | } |