(_type, value)
| 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(";")); } |
| 572 | return pass(statement); |
| 573 | } |
| 574 | function afterImport(type) { |
| 575 | if (type == "string") return cont(); |
| 576 | return pass(importSpec, maybeFrom); |