(self, op: Op, v: Value)
| 267 | self.fail(op, f"Float expected (actual type is {v.type})") |
| 268 | |
| 269 | def expect_non_float(self, op: Op, v: Value) -> None: |
| 270 | if is_float_rprimitive(v.type): |
| 271 | self.fail(op, "Float not expected") |
| 272 | |
| 273 | def expect_primitive_type(self, op: Op, v: Value) -> None: |
| 274 | if not isinstance(v.type, RPrimitive): |
no test coverage detected