File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
compiler/src/dotty/tools/dotc/transform Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -175,6 +175,7 @@ class FirstTransform extends MiniPhase with InfoTransformer { thisPhase =>
175
175
constToLiteral(tree)
176
176
177
177
override def transformApply (tree : Apply )(using Context ): Tree =
178
+ println(i " treeee $tree" )
178
179
constToLiteral(foldCondition(tree))
179
180
180
181
override def transformTyped (tree : Typed )(using Context ): Tree =
Original file line number Diff line number Diff line change @@ -304,6 +304,7 @@ class PostTyper extends MacroTransform with InfoTransformer { thisPhase =>
304
304
checkNoConstructorProxy(tree)
305
305
transformSelect(tree, Nil )
306
306
case tree : Apply =>
307
+ println(i " post-typer $tree" )
307
308
val methType = tree.fun.tpe.widen.asInstanceOf [MethodType ]
308
309
val app =
309
310
if (methType.hasErasedParams)
Original file line number Diff line number Diff line change
1
+
2
+
3
+ def f (@ deprecatedName x : Int ) = x* 2
4
+ def Test = f(x = 0 )
You can’t perform that action at this time.
0 commit comments