(symbol: ts.Symbol, checker: ts.TypeChecker)
| 1702 | } |
| 1703 | |
| 1704 | function resolvedSymbolTarget(symbol: ts.Symbol, checker: ts.TypeChecker): ts.Symbol { |
| 1705 | return (symbol.flags & ts.SymbolFlags.Alias) === 0 ? symbol : checker.getAliasedSymbol(symbol) |
| 1706 | } |
| 1707 | |
| 1708 | function isLocalSourceFile(cwd: string, sourceFile: ts.SourceFile): boolean { |
| 1709 | if (sourceFile.isDeclarationFile) return false |
no outgoing calls
no test coverage detected