(self, typ: Overloaded)
| 510 | return ("UnionType", normalized) |
| 511 | |
| 512 | def visit_overloaded(self, typ: Overloaded) -> SnapshotItem: |
| 513 | return ("Overloaded", snapshot_types(typ.items)) |
| 514 | |
| 515 | def visit_partial_type(self, typ: PartialType) -> SnapshotItem: |
| 516 | # A partial type is not fully defined, so the result is indeterminate. We shouldn't |
nothing calls this directly
no test coverage detected