(
/** @type {string} */ _path,
/** @type {(err: Error) => void} */ callback
)
| 70 | callback(); |
| 71 | }, |
| 72 | stat( |
| 73 | /** @type {string} */ _path, |
| 74 | /** @type {(err: Error) => void} */ callback |
| 75 | ) { |
| 76 | callback(new Error("ENOENT")); |
| 77 | } |
| 78 | }) |
| 79 | ); |
| 80 | c.hooks.compilation.tap( |
nothing calls this directly
no test coverage detected