(self)
| 4243 | assert not is_fprm(Int("x")) |
| 4244 | |
| 4245 | def test_is_fp_value(self): |
| 4246 | assert is_fp_value(FPVal(1.0)) |
| 4247 | assert not is_fp_value(FP("x", Float32())) |
| 4248 | |
| 4249 | def test_is_seq(self): |
| 4250 | assert is_seq(String("s")) |
nothing calls this directly
no test coverage detected