(self, op: Op)
| 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: |
| 137 | return "borrow " |
| 138 | return "" |
| 139 | |
| 140 | def visit_set_attr(self, op: SetAttr) -> str: |
| 141 | if op.is_init: |
no outgoing calls
no test coverage detected