(self, signature)
| 966 | return self.bind(sig) |
| 967 | |
| 968 | def bind(self, signature) -> inspect.BoundArguments: |
| 969 | if isinstance(self.kwargs, Dictionary): |
| 970 | kw = self.kwargs.to_dict() |
| 971 | else: |
| 972 | kw = self.kwargs |
| 973 | |
| 974 | return signature.bind(*self.args, **kw) |
| 975 | |
| 976 | def match(self, other: Call, ctx) -> bool: |
| 977 | if type(other) != Call: |
no test coverage detected