File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/main/dotty/tools/pc/utils
test/dotty/tools/pc/tests/hover Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -401,7 +401,6 @@ object InteractiveEnrichments extends CommonMtagsEnrichments:
401401 def deepDealias (using Context ): Type =
402402 tpe.dealias match
403403 case app @ AppliedType (tycon, params) =>
404- // we dealias applied type params by hand, because `dealias` doesn't do it
405404 AppliedType (tycon, params.map(_.deepDealias))
406405 case aliasingBounds : AliasingBounds =>
407406 aliasingBounds.derivedAlias(aliasingBounds.alias.dealias)
Original file line number Diff line number Diff line change @@ -654,7 +654,7 @@ class HoverTermSuite extends BaseHoverSuite:
654654 |""" .stripMargin
655655 )
656656
657- @ Test def `dealias-type-members-in-structural-types-1 ` : Unit =
657+ @ Test def `dealias-type-members-in-structural-types1 ` : Unit =
658658 check(
659659 """ object Obj {
660660 | trait A extends Sup { self =>
@@ -669,7 +669,7 @@ class HoverTermSuite extends BaseHoverSuite:
669669 """ def member: Int""" .stripMargin.hover
670670 )
671671
672- @ Test def `dealias-type-members-in-structural-types-2 ` : Unit =
672+ @ Test def `dealias-type-members-in-structural-types2 ` : Unit =
673673 check(
674674 """ object Obj:
675675 | trait A extends Sup { self =>
You can’t perform that action at this time.
0 commit comments