(self, lreg: Value, rreg: Value, expr_op: str, line: int)
| 376 | return self.builder.unary_op(lreg, expr_op, line) |
| 377 | |
| 378 | def binary_op(self, lreg: Value, rreg: Value, expr_op: str, line: int) -> Value: |
| 379 | return self.builder.binary_op(lreg, rreg, expr_op, line) |
| 380 | |
| 381 | def coerce(self, src: Value, target_type: RType, line: int, force: bool = False) -> Value: |
| 382 | return self.builder.coerce(src, target_type, line, force, can_borrow=self.can_borrow) |
no outgoing calls
no test coverage detected