(fileName: string, absoluteDiskPath: string)
| 219 | this.importPathResolver.registerAlias(resolvedPath); |
| 220 | this.project.setFileContentAtResolvedPath(resolvedPath, fileContent); |
| 221 | } |
| 222 | |
| 223 | registerDiskFile(fileName: string, absoluteDiskPath: string): void { |
| 224 | const resolvedPath = this.project.resolvePath(fileName); |
| 225 | this.importPathResolver.registerAlias(resolvedPath); |
| 226 | this.project.setFileFromDiskAtResolvedPath(resolvedPath, absoluteDiskPath); |
| 227 | } |
| 228 |
nothing calls this directly
no test coverage detected