(type, value)
| 678 | return pass(importSpec, maybeMoreImports, maybeFrom); |
| 679 | } |
| 680 | function importSpec(type, value) { |
| 681 | if (type == "{") return contCommasep(importSpec, "}"); |
| 682 | if (type == "variable") register(value); |
| 683 | if (value == "*") cx.marked = "keyword"; |
| 684 | return cont(maybeAs); |
| 685 | } |
| 686 | function maybeMoreImports(type) { |
| 687 | if (type == ",") return cont(importSpec, maybeMoreImports) |
| 688 | } |
nothing calls this directly
no test coverage detected