You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a single field to `Type`, incremental compilation using
Scala 2.12 was compiling 1 file, then 12 files, then stopped. But
incremental compilation with Dotty did not stop until the whole project
was recompiled, this happened because lookups in the `refinedTypeCache`
failed, which I tracked down to sbt-contraband generating broken
hashCode implementations (sbt/contraband#119).
We work around this by using a ListMap instead of a HashMap.
0 commit comments