(src, dest)
| 487 | }, |
| 488 | |
| 489 | copyFileSync(src, dest) { |
| 490 | using _ = slowLogging`fs.copyFileSync(${src} → ${dest})` |
| 491 | fs.copyFileSync(src, dest) |
| 492 | }, |
| 493 | |
| 494 | unlinkSync(path: string) { |
| 495 | using _ = slowLogging`fs.unlinkSync(${path})` |
nothing calls this directly
no outgoing calls
no test coverage detected