(type, value)
| 824 | return pass(importSpec, maybeMoreImports, maybeFrom); |
| 825 | } |
| 826 | function importSpec(type, value) { |
| 827 | if (type == "{") return contCommasep(importSpec, "}"); |
| 828 | if (type == "variable") register(value); |
| 829 | if (value == "*") cx.marked = "keyword"; |
| 830 | return cont(maybeAs); |
| 831 | } |
| 832 | function maybeMoreImports(type) { |
| 833 | if (type == ",") return cont(importSpec, maybeMoreImports) |
| 834 | } |
nothing calls this directly
no test coverage detected