(self, self_type: Type)
| 7867 | return typ |
| 7868 | |
| 7869 | def class_type(self, self_type: Type) -> Type: |
| 7870 | return TypeType.make_normalized(self_type) |
| 7871 | |
| 7872 | def schedule_patch(self, priority: int, patch: Callable[[], None]) -> None: |
| 7873 | self.patches.append((priority, patch)) |
no test coverage detected