Closed yannbolliger closed 3 years ago
The use of a HashMap in generics extraction lead to the bug that type parameters were not always in the same order. The bug only appeared on some runs of the program. This PR fixes the behaviour by using a BTreeMap.
BTreeMap
Well done! 🎉
The use of a HashMap in generics extraction lead to the bug that type parameters were not always in the same order. The bug only appeared on some runs of the program. This PR fixes the behaviour by using a
BTreeMap
.