(type)
| 839 | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| 840 | } |
| 841 | function arrayLiteral(type) { |
| 842 | if (type == "]") return cont(); |
| 843 | return pass(commasep(expressionNoComma, "]")); |
| 844 | } |
| 845 | function enumdef() { |
| 846 | return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex) |
| 847 | } |