(err: DOMException)
| 371 | }; |
| 372 | // Called when the path couldn't be opened as a directory or a file. |
| 373 | const failedToLoad = (err: DOMException): void => { |
| 374 | cb(convertError(err, path, false /* Unknown / irrelevant */)); |
| 375 | }; |
| 376 | // Called when the path couldn't be opened as a file, but might still be a |
| 377 | // directory. |
| 378 | const failedToLoadAsFile = (): void => { |
nothing calls this directly
no test coverage detected