(path: Path)
| 196 | } |
| 197 | |
| 198 | list(path: Path): Observable<PathFragment[]> { |
| 199 | return new Observable((obs) => { |
| 200 | const names = readdirSync(getSystemPath(path)); |
| 201 | obs.next(names.map((name) => fragment(name))); |
| 202 | obs.complete(); |
| 203 | }); |
| 204 | } |
| 205 | |
| 206 | exists(path: Path): Observable<boolean> { |
| 207 | return new Observable((obs) => { |
nothing calls this directly
no test coverage detected