(fileName)
| 61 | getNewLine: () => ts.sys.newLine, |
| 62 | getScriptFileNames: () => fileNames, |
| 63 | getScriptSnapshot(fileName) { |
| 64 | const text = getFileText(fileName) |
| 65 | return text === undefined ? undefined : ts.ScriptSnapshot.fromString(text) |
| 66 | }, |
| 67 | getScriptVersion: () => '0', |
| 68 | readDirectory: ts.sys.readDirectory, |
| 69 | readFile: ts.sys.readFile, |
nothing calls this directly
no test coverage detected