(type, value)
| 809 | return pass(importSpec, maybeMoreImports, maybeFrom); |
| 810 | } |
| 811 | function importSpec(type, value) { |
| 812 | if (type == "{") return contCommasep(importSpec, "}"); |
| 813 | if (type == "variable") register(value); |
| 814 | if (value == "*") cx.marked = "keyword"; |
| 815 | return cont(maybeAs); |
| 816 | } |
| 817 | function maybeMoreImports(type) { |
| 818 | if (type == ",") return cont(importSpec, maybeMoreImports) |
| 819 | } |
nothing calls this directly
no test coverage detected