(self, filename)
| 214 | self.file_info[filekey(file)] = command |
| 215 | |
| 216 | def get(self, filename): |
| 217 | if command := self.file_info.get(filename.lower()): |
| 218 | # xcode 12 escape =, but not recognized... |
| 219 | return command.replace("\\=", "=") |
| 220 | |
| 221 | def groupby_dir(self) -> dict[str, set[str]]: |
| 222 | if self.dir_info is None: # lazy index dir and cmd |
no outgoing calls
no test coverage detected