(path: string)
| 316 | } |
| 317 | |
| 318 | getModuleHash(path: string): string { |
| 319 | return getModuleHash(this.root, path, (p) => this.getSourceFileHash(p)); |
| 320 | } |
| 321 | |
| 322 | getModuleResolver(path: string, servePath?: string): (specifier: string) => Promise<string> { |
| 323 | return getModuleResolver(this.root, path, servePath, (p) => this.getSourceFileHash(p)); |
no test coverage detected