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 a2a445f commit 7f57ff3Copy full SHA for 7f57ff3
compiler/src/dotty/tools/dotc/core/Designators.scala
@@ -44,6 +44,10 @@ object Designators {
44
type TermDesignator = Designator { type ThisName = TermName }
45
type TypeDesignator = Designator { type ThisName = TypeName }
46
47
+ /** Names that come with the namespace where they are defined.
48
+ * Used to give a stable reference to private names, and also to
49
+ * Scala 2x inner classes.
50
+ */
51
case class LocalName[N <: Name](name: N, nameSpace: TypeRef) extends Designator {
52
type ThisName = N
53
0 commit comments