(self, *a: Type)
| 662 | # Helpers |
| 663 | |
| 664 | def tuple(self, *a: Type) -> TupleType: |
| 665 | return TupleType(list(a), self.fx.std_tuple) |
| 666 | |
| 667 | def callable(self, vars: list[str], *a: Type) -> CallableType: |
| 668 | """callable(args, a1, ..., an, r) constructs a callable with |
no test coverage detected