* Checks if two symbols, through aliasing and/or merging, refer to the same thing
(s1, s2)
| 51699 | * Checks if two symbols, through aliasing and/or merging, refer to the same thing |
| 51700 | */ |
| 51701 | function getSymbolIfSameReference(s1, s2) { |
| 51702 | if (getMergedSymbol(resolveSymbol(getMergedSymbol(s1))) === getMergedSymbol(resolveSymbol(getMergedSymbol(s2)))) { |
| 51703 | return s1; |
| 51704 | } |
| 51705 | } |
| 51706 | function getExportSymbolOfValueSymbolIfExported(symbol) { |
| 51707 | return getMergedSymbol(symbol && (symbol.flags & 1048576 /* SymbolFlags.ExportValue */) !== 0 && symbol.exportSymbol || symbol); |
| 51708 | } |
no test coverage detected
searching dependent graphs…