(t *testing.T)
| 251 | } |
| 252 | |
| 253 | func TestOptimizeOr_IdentityFalseBoth(t *testing.T) { |
| 254 | assertRender(t, "false", or2(boolLit(false), boolLit(false)), "false || false → false") |
| 255 | } |
| 256 | |
| 257 | // --------------------------------------------------------------------------- |
| 258 | // OR – boolean annihilation (A || true → true) |
nothing calls this directly
no test coverage detected