(path: string)
| 324 | } |
| 325 | |
| 326 | resolveImportPath(path: string): string { |
| 327 | return resolveImportPath(this.root, path, (p) => this.getSourceFileHash(p)); |
| 328 | } |
| 329 | |
| 330 | resolveFilePath(path: string): string { |
| 331 | return `/${join("_file", path)}?sha=${this.getSourceFileHash(path)}`; |
no test coverage detected