(self, toprint: str | Value)
| 372 | self.keep_alives = [] |
| 373 | |
| 374 | def debug_print(self, toprint: str | Value) -> None: |
| 375 | if isinstance(toprint, str): |
| 376 | toprint = self.load_str(toprint) |
| 377 | self.primitive_op(debug_print_op, [toprint], -1) |
| 378 | |
| 379 | # Type conversions |
| 380 |