(path: string)
| 82 | } |
| 83 | |
| 84 | resolvePath(path: string): FilePath { |
| 85 | return this.fileManager.resolvePath(path); |
| 86 | } |
| 87 | |
| 88 | setFileContentAtPath(path: string, content: string): void { |
| 89 | this.setFileContentAtResolvedPath(this.resolvePath(path), content); |
no outgoing calls
no test coverage detected