(self, data: WriteBuffer)
| 448 | return alias |
| 449 | |
| 450 | def write(self, data: WriteBuffer) -> None: |
| 451 | write_tag(data, TYPE_ALIAS_TYPE) |
| 452 | write_type_list(data, self.args) |
| 453 | assert self.alias is not None |
| 454 | write_str(data, self.alias.fullname) |
| 455 | write_tag(data, END_TAG) |
| 456 | |
| 457 | @classmethod |
| 458 | def read(cls, data: ReadBuffer) -> TypeAliasType: |
nothing calls this directly
no test coverage detected