()
| 37287 | : factory.createExportSpecifier(isTypeOnly, propertyName, name); |
| 37288 | return finishNode(node, pos); |
| 37289 | function parseNameWithKeywordCheck() { |
| 37290 | checkIdentifierIsKeyword = ts.isKeyword(token()) && !isIdentifier(); |
| 37291 | checkIdentifierStart = scanner.getTokenPos(); |
| 37292 | checkIdentifierEnd = scanner.getTextPos(); |
| 37293 | return parseIdentifierName(); |
| 37294 | } |
| 37295 | } |
| 37296 | function parseNamespaceExport(pos) { |
| 37297 | return finishNode(factory.createNamespaceExport(parseIdentifierName()), pos); |
no test coverage detected
searching dependent graphs…