(self)
| 793 | self.inputs.append(serialize_path(obj)) |
| 794 | |
| 795 | def output(self) -> Path: |
| 796 | if self.module_id == 0: |
| 797 | return build_path / f"{self.name}.dol" |
| 798 | else: |
| 799 | return build_path / self.name / f"{self.name}.rel" |
| 800 | |
| 801 | def partial_output(self) -> Path: |
| 802 | if self.module_id == 0: |
no outgoing calls
no test coverage detected