(self)
| 471 | return Template(self.invoke).safe_substitute(self.input_map()) |
| 472 | |
| 473 | def write_to_tmp_var(self) -> bool: |
| 474 | if not self.returns: |
| 475 | return False |
| 476 | return len(self.returns.write) > 1 or self.returns.write[0].count( |
| 477 | '${result}') > 1 |
| 478 | |
| 479 | def get_cfunction(self) -> CFunction: |
| 480 | if self.cfunction: |