(self, fdef: FuncDef)
| 277 | return NonExtClassInfo(non_ext_dict, non_ext_bases, non_ext_anns, non_ext_metaclass) |
| 278 | |
| 279 | def add_method(self, fdef: FuncDef) -> None: |
| 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) |
no test coverage detected