Failures on Remove unnecessary leftover @dart=2.19
from tests.
#59625
Labels
area-dart2wasm
Issues for the dart2wasm compiler.
type-bug
Incorrect behavior (everything from a crash to more subtle misbehavior)
There are new test failures on Remove unnecessary leftover
@dart=2.19
from tests..The tests
are failing on configurations
In 2.19-mode constant maps/sets should not read the
hashCode
of objects with trivial equality, they should just use identity hash code (except for the lucky few platform objects where it should use the actual hashCode, likely numbers,Symbol
andType
objects, because there will be runtime created objects equal to them).The Wasm code crashes badly if
hashCode
throws. (That's a silly thing to do, but we have tests.)This was probably accepted already, and just popped up again because I copied/renamed a file.
The text was updated successfully, but these errors were encountered: