(self, frame: Frame)
| 714 | return rv |
| 715 | |
| 716 | def dump_local_context(self, frame: Frame) -> str: |
| 717 | items_kv = ", ".join( |
| 718 | f"{name!r}: {target}" |
| 719 | for name, target in frame.symbols.dump_stores().items() |
| 720 | ) |
| 721 | return f"{{{items_kv}}}" |
| 722 | |
| 723 | def write_commons(self) -> None: |
| 724 | """Writes a common preamble that is used by root and block functions. |
no test coverage detected