(self, type: RType, lhs: Value, rhs: Value, op: int, line: int)
| 448 | return self.builder.primitive_op(desc, args, line, result_type) |
| 449 | |
| 450 | def int_op(self, type: RType, lhs: Value, rhs: Value, op: int, line: int) -> Value: |
| 451 | return self.builder.int_op(type, lhs, rhs, op, line) |
| 452 | |
| 453 | def compare_tuples(self, lhs: Value, rhs: Value, op: str, line: int) -> Value: |
| 454 | return self.builder.compare_tuples(lhs, rhs, op, line) |
no outgoing calls
no test coverage detected