(self, t: Parameters)
| 77 | return self.copy_common(t, dup) |
| 78 | |
| 79 | def visit_parameters(self, t: Parameters) -> ProperType: |
| 80 | dup = Parameters( |
| 81 | t.arg_types, |
| 82 | t.arg_kinds, |
| 83 | t.arg_names, |
| 84 | variables=t.variables, |
| 85 | is_ellipsis_args=t.is_ellipsis_args, |
| 86 | ) |
| 87 | return self.copy_common(t, dup) |
| 88 | |
| 89 | def visit_type_var_tuple(self, t: TypeVarTupleType) -> ProperType: |
| 90 | dup = TypeVarTupleType( |
nothing calls this directly
no test coverage detected