(path: Path)
| 108 | |
| 109 | // Some hosts may not support stat. |
| 110 | stat(path: Path): Observable<virtualFs.Stats<Stats>> { |
| 111 | return observableFrom(fsPromises.stat(getSystemPath(path))); |
| 112 | } |
| 113 | |
| 114 | // Some hosts may not support watching. |
| 115 | watch( |
no test coverage detected