(path: string)
| 70 | } |
| 71 | |
| 72 | openSourceFile(path: string): ts.SourceFile { |
| 73 | return this.sourceFileManager.getOrCreateSourceFile(path, this.compilerOptions.target ?? ts.ScriptTarget.Latest); |
| 74 | } |
| 75 | |
| 76 | getOpenedSourceFile(path: string): ts.SourceFile | undefined { |
| 77 | return this.sourceFileManager.getSourceFile(path); |
no test coverage detected