(self)
| 253 | return self.check("wasm", calculate_wasm_fingerprint) |
| 254 | |
| 255 | def check_all(self) -> bool: |
| 256 | cwd = Path.cwd() |
| 257 | if self._mtime_fast_path("all", cwd / "src"): |
| 258 | return False # no change detected via mtime fast-path |
| 259 | return self.check("all", calculate_fingerprint) |
nothing calls this directly
no test coverage detected