(self, lvalue: NameExpr, stmt: AssignmentStmt)
| 280 | handle_non_ext_method(self.builder, self.non_ext, self.cdef, fdef) |
| 281 | |
| 282 | def add_attr(self, lvalue: NameExpr, stmt: AssignmentStmt) -> None: |
| 283 | add_non_ext_class_attr_ann(self.builder, self.non_ext, lvalue, stmt) |
| 284 | add_non_ext_class_attr( |
| 285 | self.builder, self.non_ext, lvalue, stmt, self.cdef, self.attrs_to_cache |
| 286 | ) |
| 287 | |
| 288 | def finalize(self, ir: ClassIR) -> None: |
| 289 | # Dynamically create the class via the type constructor |
no test coverage detected