(self)
| 145 | self.loads[target] = (VAR_LOAD_RESOLVE, name) |
| 146 | |
| 147 | def dump_stores(self) -> t.Dict[str, str]: |
| 148 | rv: t.Dict[str, str] = {} |
| 149 | node: t.Optional["Symbols"] = self |
| 150 | |
| 151 | while node is not None: |
| 152 | for name in sorted(node.stores): |
| 153 | if name not in rv: |
| 154 | rv[name] = self.find_ref(name) # type: ignore |
| 155 | |
| 156 | node = node.parent |
| 157 | |
| 158 | return rv |
| 159 | |
| 160 | def dump_param_targets(self) -> t.Set[str]: |
| 161 | rv = set() |
no test coverage detected