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 55bac27 commit 6be4781Copy full SHA for 6be4781
compiler/src/dotty/tools/dotc/ast/Trees.scala
@@ -434,11 +434,13 @@ object Trees {
434
def forwardTo = qual
435
}
436
437
- abstract class GenericApply[-T >: Untyped] extends ProxyTree[T] with TermTree[T] {
+ abstract class GenericApply[-T >: Untyped] extends ProxyTree[T] {
438
type ThisTree[-T >: Untyped] <: GenericApply[T]
439
val fun: Tree[T]
440
val args: List[Tree[T]]
441
def forwardTo = fun
442
+ override def isTerm = fun.isTerm
443
+ override def isType = fun.isType
444
445
446
/** fun(args) */
0 commit comments