(method: string, path: string)
| 840 | copyFile(path) { |
| 841 | return Effect.fail(notFound("copyFile", path)) |
| 842 | }, |
| 843 | glob(pattern) { |
| 844 | return Effect.fail(notFound("glob", pattern)) |
| 845 | }, |
| 846 | exists() { |
| 847 | return Effect.succeed(false) |
| 848 | }, |
| 849 | link(path) { |
| 850 | return Effect.fail(notFound("link", path)) |
| 851 | }, |
| 852 | makeDirectory() { |
no test coverage detected
searching dependent graphs…