We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a93cdf4 commit 3686713Copy full SHA for 3686713
src/dotty/tools/dotc/config/Config.scala
@@ -4,7 +4,7 @@ object Config {
4
5
final val cacheMembersNamed = true
6
final val cacheAsSeenFrom = true
7
- final val useFingerPrints = true
+ final val useFingerPrints = true // note: it currently seems to be slightly faster not to use them! my junit test: 548s without, 560s with.
8
final val cacheMemberNames = true
9
final val cacheImplicitScopes = true
10
src/dotty/tools/dotc/core/SymDenotations.scala
@@ -1384,7 +1384,7 @@ object SymDenotations {
1384
var fp = FingerPrint()
1385
var e = info.decls.lastEntry
1386
while (e != null) {
1387
- fp.include(e.sym.name)
+ fp.include(e.name)
1388
e = e.prev
1389
}
1390
var ps = classParents
0 commit comments