(self)
| 565 | return self.function.params |
| 566 | |
| 567 | def get_args(self) -> str: |
| 568 | output_args = [] |
| 569 | if self.function.returns: |
| 570 | output_args = self.function.returns.cpp_output_args(self.prefix) |
| 571 | if not self.function.cfunction: |
| 572 | raise Exception('self.function.update() must be called') |
| 573 | return ', '.join( |
| 574 | ['&{}'.format(self.function.cfunction.name)] + output_args + |
| 575 | [p.cpp_arg(self.prefix) for p in self.get_function_params()]) |
| 576 | |
| 577 | def get_params(self) -> str: |
| 578 | return ', '.join( |
no test coverage detected