()
| 7306 | |
| 7307 | |
| 7308 | function parseImportSpecifier() { |
| 7309 | // import {<foo as bar>} ...; |
| 7310 | var id, name = null, marker = markerCreate(); |
| 7311 | |
| 7312 | id = parseNonComputedProperty(); |
| 7313 | if (matchContextualKeyword('as')) { |
| 7314 | lex(); |
| 7315 | name = parseVariableIdentifier(); |
| 7316 | } |
| 7317 | |
| 7318 | return markerApply(marker, delegate.createImportSpecifier(id, name)); |
| 7319 | } |
| 7320 | |
| 7321 | function parseNamedImports() { |
| 7322 | var specifiers = []; |
no test coverage detected