(self, t: Instance)
| 64 | return self.copy_common(t, DeletedType(t.source)) |
| 65 | |
| 66 | def visit_instance(self, t: Instance) -> ProperType: |
| 67 | dup = Instance(t.type, t.args, last_known_value=t.last_known_value) |
| 68 | return self.copy_common(t, dup) |
| 69 | |
| 70 | def visit_type_var(self, t: TypeVarType) -> ProperType: |
| 71 | return self.copy_common(t, t.copy_modified()) |
nothing calls this directly
no test coverage detected