Return arguments without any synthetic bitmap arguments.
(self)
| 93 | self.args = self.args + tuple(reversed(extra)) |
| 94 | |
| 95 | def real_args(self) -> tuple[RuntimeArg, ...]: |
| 96 | """Return arguments without any synthetic bitmap arguments.""" |
| 97 | if self.num_bitmap_args: |
| 98 | return self.args[: -self.num_bitmap_args] |
| 99 | return self.args |
| 100 | |
| 101 | def bound_sig(self) -> FuncSignature: |
| 102 | if self.num_bitmap_args: |
no outgoing calls
no test coverage detected