(path: string)
| 73 | } |
| 74 | |
| 75 | async stat(path: string): Promise<FsStat> { |
| 76 | const s = await this.ws.stat(path); |
| 77 | if (!s) { |
| 78 | throw enoent(path); |
| 79 | } |
| 80 | return fromWorkspaceStat(s); |
| 81 | } |
| 82 | |
| 83 | async lstat(path: string): Promise<FsStat> { |
| 84 | const s = await this.ws.lstat(path); |
nothing calls this directly
no test coverage detected