(self, fdef: FuncDef)
| 327 | return False |
| 328 | |
| 329 | def add_method(self, fdef: FuncDef) -> None: |
| 330 | handle_ext_method(self.builder, self.cdef, fdef) |
| 331 | |
| 332 | def add_attr(self, lvalue: NameExpr, stmt: AssignmentStmt) -> None: |
| 333 | # Variable declaration with no body |
nothing calls this directly
no test coverage detected