(self)
| 645 | self.outputs = [] |
| 646 | |
| 647 | def as_comment(self) -> str: |
| 648 | stack_comment = self.stack.as_comment() |
| 649 | next_line = "\n " |
| 650 | inputs = ", ".join([var.compact_str() for var in self.inputs]) |
| 651 | outputs = ", ".join([var.compact_str() for var in self.outputs]) |
| 652 | return f"{stack_comment[:-2]}{next_line}inputs: {inputs} outputs: {outputs}*/" |
| 653 | |
| 654 | def _print(self, out: CWriter) -> None: |
| 655 | if PRINT_STACKS: |
no test coverage detected