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 cdb202d commit 9f4dac2Copy full SHA for 9f4dac2
compiler/src/dotty/tools/dotc/core/Symbols.scala
@@ -667,7 +667,7 @@ object Symbols {
667
case None =>
668
val idSet = mutable.SortedSet[String]()
669
tree.foreachSubTree {
670
- case tree: tpd.RefTree => idSet += tree.name.toString
+ case tree: tpd.NameTree => idSet += tree.name.toString
671
case _ =>
672
}
673
val ids = idSet.toArray
compiler/src/dotty/tools/dotc/core/tasty/DottyUnpickler.scala
@@ -10,6 +10,7 @@ import util.Positions._
10
import util.{SourceFile, NoSource}
11
import Annotations.Annotation
12
import classfile.ClassfileParser
13
+import Names.SimpleName
14
15
object DottyUnpickler {
16
0 commit comments