(self, path: str)
| 1173 | return shadow_file if shadow_file else path |
| 1174 | |
| 1175 | def get_stat(self, path: str) -> os.stat_result | None: |
| 1176 | return self.fscache.stat_or_none(self.maybe_swap_for_shadow_path(path)) |
| 1177 | |
| 1178 | def getmtime(self, path: str) -> int: |
| 1179 | """Return a file's mtime; but 0 in bazel mode. |
no test coverage detected