(self, builder: IRBuilder, cdef: ClassDef)
| 363 | add_annotations_to_dict = True |
| 364 | |
| 365 | def __init__(self, builder: IRBuilder, cdef: ClassDef) -> None: |
| 366 | super().__init__(builder, cdef) |
| 367 | self.non_ext = self.create_non_ext_info() |
| 368 | |
| 369 | def create_non_ext_info(self) -> NonExtClassInfo: |
| 370 | """Set up a NonExtClassInfo to track dataclass attributes. |
nothing calls this directly
no test coverage detected