(self, out:CWriter)
| 154 | body: Stmt |
| 155 | |
| 156 | def print(self, out:CWriter) -> None: |
| 157 | out.emit(self.while_) |
| 158 | for tkn in self.condition: |
| 159 | out.emit(tkn) |
| 160 | self.body.print(out) |
| 161 | |
| 162 | def accept(self, visitor: Visitor) -> None: |
| 163 | visitor(self) |