(type, value)
| 576 | return pass(importSpec, maybeFrom); |
| 577 | } |
| 578 | function importSpec(type, value) { |
| 579 | if (type == "{") return contCommasep(importSpec, "}"); |
| 580 | if (type == "variable") register(value); |
| 581 | return cont(); |
| 582 | } |
| 583 | function maybeFrom(_type, value) { |
| 584 | if (value == "from") { cx.marked = "keyword"; return cont(expression); } |
| 585 | } |
nothing calls this directly
no test coverage detected