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 da97bfb commit 44ccfe9Copy full SHA for 44ccfe9
src/dotty/tools/dotc/core/SymDenotations.scala
@@ -1487,10 +1487,8 @@ object SymDenotations {
1487
def delete(sym: Symbol)(implicit ctx: Context) = {
1488
require(!(this is Frozen))
1489
info.decls.openForMutations.unlink(sym)
1490
- if (myMemberFingerPrint != FingerPrint.unknown)
1491
- computeMemberFingerPrint
1492
- if (myMemberCache != null)
1493
- myMemberCache invalidate sym.name
+ myMemberFingerPrint = FingerPrint.unknown
+ if (myMemberCache != null) myMemberCache invalidate sym.name
1494
}
1495
1496
/** All members of this class that have the given name.
0 commit comments