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 debc5fd commit 67bb2f7Copy full SHA for 67bb2f7
src/dotty/tools/dotc/transform/SelectStatic.scala
@@ -46,10 +46,16 @@ class SelectStatic extends MiniPhaseTransform with IdentityDenotTransformer { th
46
Block(stats, Select(qual, nm))
47
case Apply(Block(stats, qual), nm) =>
48
Block(stats, Apply(qual, nm))
49
+ case TypeApply(Block(stats, qual), nm) =>
50
+ Block(stats, TypeApply(qual, nm))
51
case _ => t
52
}
53
54
override def transformApply(tree: tpd.Apply)(implicit ctx: Context, info: TransformerInfo): tpd.Tree = {
55
normalize(tree)
56
57
+
58
+ override def transformTypeApply(tree: tpd.TypeApply)(implicit ctx: Context, info: TransformerInfo): tpd.Tree = {
59
+ normalize(tree)
60
+ }
61
0 commit comments