(self, op: TupleGet)
| 160 | return self.format("%s = %r :: %s", name, op.value, op.namespace) |
| 161 | |
| 162 | def visit_tuple_get(self, op: TupleGet) -> str: |
| 163 | return self.format("%r = %s%r[%d]", op, self.borrow_prefix(op), op.src, op.index) |
| 164 | |
| 165 | def visit_tuple_set(self, op: TupleSet) -> str: |
| 166 | item_str = ", ".join(self.format("%r", item) for item in op.items) |
nothing calls this directly
no test coverage detected