(self, lreg: Value, rreg: Value, op: str, line: int)
| 1861 | return self.add(IntOp(bool_rprimitive, lreg, rreg, code, line)) |
| 1862 | |
| 1863 | def bool_comparison_op(self, lreg: Value, rreg: Value, op: str, line: int) -> Value: |
| 1864 | op_id = ComparisonOp.signed_ops[op] |
| 1865 | return self.comparison_op(lreg, rreg, op_id, line) |
| 1866 | |
| 1867 | def _non_specialized_unary_op(self, value: Value, op: str, line: int) -> Value: |
| 1868 | if isinstance(value.type, RInstance): |
no test coverage detected