(self, out: CWriter)
| 652 | return f"{stack_comment[:-2]}{next_line}inputs: {inputs} outputs: {outputs}*/" |
| 653 | |
| 654 | def _print(self, out: CWriter) -> None: |
| 655 | if PRINT_STACKS: |
| 656 | out.emit(self.as_comment() + "\n") |
| 657 | |
| 658 | def close_inputs(self, out: CWriter) -> None: |
| 659 |
no test coverage detected