(host, resolver, file)
| 108031 | var ts; |
| 108032 | (function (ts) { |
| 108033 | function getDeclarationDiagnostics(host, resolver, file) { |
| 108034 | var compilerOptions = host.getCompilerOptions(); |
| 108035 | var result = ts.transformNodes(resolver, host, ts.factory, compilerOptions, file ? [file] : ts.filter(host.getSourceFiles(), ts.isSourceFileNotJson), [transformDeclarations], /*allowDtsFiles*/ false); |
| 108036 | return result.diagnostics; |
| 108037 | } |
| 108038 | ts.getDeclarationDiagnostics = getDeclarationDiagnostics; |
| 108039 | function hasInternalAnnotation(range, currentSourceFile) { |
| 108040 | var comment = currentSourceFile.text.substring(range.pos, range.end); |
nothing calls this directly
no test coverage detected