* Given A[B][C][D], finds A[B]
(top)
| 53523 | * Given A[B][C][D], finds A[B] |
| 53524 | */ |
| 53525 | function getTopmostIndexedAccessType(top) { |
| 53526 | if (ts.isIndexedAccessTypeNode(top.objectType)) { |
| 53527 | return getTopmostIndexedAccessType(top.objectType); |
| 53528 | } |
| 53529 | return top; |
| 53530 | } |
| 53531 | function getSpecifierForModuleSymbol(symbol, context, overrideImportMode) { |
| 53532 | var _a; |
| 53533 | var file = ts.getDeclarationOfKind(symbol, 305 /* SyntaxKind.SourceFile */); |
no outgoing calls
no test coverage detected
searching dependent graphs…