(container, name)
| 47771 | } |
| 47772 | ts.isExportsOrModuleExportsOrAlias = isExportsOrModuleExportsOrAlias; |
| 47773 | function lookupSymbolForName(container, name) { |
| 47774 | var local = container.locals && container.locals.get(name); |
| 47775 | if (local) { |
| 47776 | return local.exportSymbol || local; |
| 47777 | } |
| 47778 | if (ts.isSourceFile(container) && container.jsGlobalAugmentations && container.jsGlobalAugmentations.has(name)) { |
| 47779 | return container.jsGlobalAugmentations.get(name); |
| 47780 | } |
| 47781 | return container.symbol && container.symbol.exports && container.symbol.exports.get(name); |
| 47782 | } |
| 47783 | })(ts || (ts = {})); |
| 47784 | /** @internal */ |
| 47785 | var ts; |
no test coverage detected
searching dependent graphs…