(self)
| 288 | self.emit_line("fflush(stdout);") |
| 289 | |
| 290 | def temp_name(self) -> str: |
| 291 | self.context.temp_counter += 1 |
| 292 | return "__tmp%d" % self.context.temp_counter |
| 293 | |
| 294 | def new_label(self) -> str: |
| 295 | self.context.temp_counter += 1 |
no outgoing calls
no test coverage detected