(symbol, context, meaning, yieldModuleSymbol)
| 53405 | } |
| 53406 | } |
| 53407 | function lookupSymbolChain(symbol, context, meaning, yieldModuleSymbol) { |
| 53408 | context.tracker.trackSymbol(symbol, context.enclosingDeclaration, meaning); // TODO: GH#18217 |
| 53409 | return lookupSymbolChainWorker(symbol, context, meaning, yieldModuleSymbol); |
| 53410 | } |
| 53411 | function lookupSymbolChainWorker(symbol, context, meaning, yieldModuleSymbol) { |
| 53412 | // Try to get qualified name if the symbol is not a type parameter and there is an enclosing declaration. |
| 53413 | var chain; |
no test coverage detected
searching dependent graphs…