File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
compiler/src/dotty/tools/dotc Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ object DenotTransformers {
6161 trait SymTransformer extends DenotTransformer {
6262
6363 /** Tramsform the info of a denotation that is not a Symdenotation */
64- def transformInfo (tp : Type , sym : Symbol )(implicit ctx : Context ): Type = tp
64+ def transformNonSymInfo (tp : Type , sym : Symbol )(implicit ctx : Context ): Type = tp
6565
6666 def transformSym (sym : SymDenotation )(implicit ctx : Context ): SymDenotation
6767
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class ElimOpaque extends MiniPhase with SymTransformer {
2727 // base types of opaque aliases change
2828 override def changesBaseTypes = true
2929
30- override def transformInfo (tp : Type , sym : Symbol )(implicit ctx : Context ): Type =
30+ override def transformNonSymInfo (tp : Type , sym : Symbol )(implicit ctx : Context ): Type =
3131 if (sym.isOpaqueHelper) TypeAlias (tp.extractOpaqueAlias) else tp
3232
3333 def transformSym (sym : SymDenotation )(implicit ctx : Context ): SymDenotation =
You can’t perform that action at this time.
0 commit comments