(symbol)
| 50835 | return links.aliasTarget; |
| 50836 | } |
| 50837 | function tryResolveAlias(symbol) { |
| 50838 | var links = getSymbolLinks(symbol); |
| 50839 | if (links.aliasTarget !== resolvingSymbol) { |
| 50840 | return resolveAlias(symbol); |
| 50841 | } |
| 50842 | return undefined; |
| 50843 | } |
| 50844 | /** |
| 50845 | * Marks a symbol as type-only if its declaration is syntactically type-only. |
| 50846 | * If it is not itself marked type-only, but resolves to a type-only alias |
no test coverage detected
searching dependent graphs…