(node)
| 85231 | return targetSymbol; |
| 85232 | } |
| 85233 | function checkImportBinding(node) { |
| 85234 | checkCollisionsForDeclarationName(node, node.name); |
| 85235 | checkAliasSymbol(node); |
| 85236 | if (node.kind === 270 /* SyntaxKind.ImportSpecifier */ && |
| 85237 | ts.idText(node.propertyName || node.name) === "default" && |
| 85238 | ts.getESModuleInterop(compilerOptions) && |
| 85239 | moduleKind !== ts.ModuleKind.System && (moduleKind < ts.ModuleKind.ES2015 || ts.getSourceFileOfNode(node).impliedNodeFormat === ts.ModuleKind.CommonJS)) { |
| 85240 | checkExternalEmitHelpers(node, 131072 /* ExternalEmitHelpers.ImportDefault */); |
| 85241 | } |
| 85242 | } |
| 85243 | function checkAssertClause(declaration) { |
| 85244 | var _a; |
| 85245 | if (declaration.assertClause) { |
no test coverage detected
searching dependent graphs…