(ref)
| 118087 | } |
| 118088 | } |
| 118089 | function getLibFileFromReference(ref) { |
| 118090 | var libName = ts.toFileNameLowerCase(ref.fileName); |
| 118091 | var libFileName = ts.libMap.get(libName); |
| 118092 | if (libFileName) { |
| 118093 | return getSourceFile(pathForLibFile(libFileName)); |
| 118094 | } |
| 118095 | } |
| 118096 | /** This should have similar behavior to 'processSourceFile' without diagnostics or mutation. */ |
| 118097 | function getSourceFileFromReference(referencingFile, ref) { |
| 118098 | return getSourceFileFromReferenceWorker(resolveTripleslashReference(ref.fileName, referencingFile.fileName), getSourceFile); |
nothing calls this directly
no test coverage detected
searching dependent graphs…