(self, op: GetAttr)
| 130 | return self.format("%r = %s%s", op, prefix, rvalue) |
| 131 | |
| 132 | def visit_get_attr(self, op: GetAttr) -> str: |
| 133 | return self.format("%r = %s%r.%s", op, self.borrow_prefix(op), op.obj, op.attr) |
| 134 | |
| 135 | def borrow_prefix(self, op: Op) -> str: |
| 136 | if op.is_borrowed: |
nothing calls this directly
no test coverage detected