(cls, data: ReadBuffer)
| 2851 | |
| 2852 | @classmethod |
| 2853 | def read(cls, data: ReadBuffer) -> TupleType: |
| 2854 | assert read_tag(data) == INSTANCE |
| 2855 | fallback = Instance.read(data) |
| 2856 | ret = TupleType(read_type_list(data), fallback, implicit=read_bool(data)) |
| 2857 | assert read_tag(data) == END_TAG |
| 2858 | return ret |
| 2859 | |
| 2860 | def copy_modified( |
| 2861 | self, *, fallback: Instance | None = None, items: list[Type] | None = None |
nothing calls this directly
no test coverage detected