Perform any final operations to complete the class IR
(self, ir: ClassIR)
| 245 | |
| 246 | @abstractmethod |
| 247 | def finalize(self, ir: ClassIR) -> None: |
| 248 | """Perform any final operations to complete the class IR""" |
| 249 | |
| 250 | def class_body_obj(self) -> Value | None: |
| 251 | """Return the object to use for loading class attributes during class body init. |