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 e5ce083 commit bcdddd9Copy full SHA for bcdddd9
src/dotty/tools/dotc/ast/Trees.scala
@@ -559,7 +559,10 @@ object Trees {
559
type ThisTree[-T >: Untyped] = SingletonTypeTree[T]
560
}
561
562
- /** qualifier # name */
+ /** qualifier # name
563
+ * In Scala, this always refers to a type, but in a Java
564
+ * compilation unit this might refer to a term.
565
+ */
566
case class SelectFromTypeTree[-T >: Untyped] private[ast] (qualifier: Tree[T], name: Name)
567
extends RefTree[T] {
568
type ThisTree[-T >: Untyped] = SelectFromTypeTree[T]
0 commit comments