(type)
| 824 | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| 825 | } |
| 826 | function arrayLiteral(type) { |
| 827 | if (type == "]") return cont(); |
| 828 | return pass(commasep(expressionNoComma, "]")); |
| 829 | } |
| 830 | function enumdef() { |
| 831 | return pass(pushlex("form"), pattern, expect("{"), pushlex("}"), commasep(enummember, "}"), poplex, poplex) |
| 832 | } |