(type, value)
| 563 | return cont(); |
| 564 | } |
| 565 | function afterModule(type, value) { |
| 566 | if (type == "string") return cont(statement); |
| 567 | if (type == "variable") { register(value); return cont(maybeFrom); } |
| 568 | } |
| 569 | function afterExport(_type, value) { |
| 570 | if (value == "*") { cx.marked = "keyword"; return cont(maybeFrom, expect(";")); } |
| 571 | if (value == "default") { cx.marked = "keyword"; return cont(expression, expect(";")); } |