(pos, hasJSDoc, decorators, modifiers, identifier, isTypeOnly)
| 37134 | return token() === 27 /* SyntaxKind.CommaToken */ || token() === 156 /* SyntaxKind.FromKeyword */; |
| 37135 | } |
| 37136 | function parseImportEqualsDeclaration(pos, hasJSDoc, decorators, modifiers, identifier, isTypeOnly) { |
| 37137 | parseExpected(63 /* SyntaxKind.EqualsToken */); |
| 37138 | var moduleReference = parseModuleReference(); |
| 37139 | parseSemicolon(); |
| 37140 | var node = factory.createImportEqualsDeclaration(decorators, modifiers, isTypeOnly, identifier, moduleReference); |
| 37141 | var finished = withJSDoc(finishNode(node, pos), hasJSDoc); |
| 37142 | return finished; |
| 37143 | } |
| 37144 | function parseImportClause(identifier, pos, isTypeOnly) { |
| 37145 | // ImportClause: |
| 37146 | // ImportedDefaultBinding |
no test coverage detected
searching dependent graphs…