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:
401
401
def deepDealias (using Context ): Type =
402
402
tpe.dealias match
403
403
case app @ AppliedType (tycon, params) =>
404
- // we dealias applied type params by hand, because `dealias` doesn't do it
405
404
AppliedType (tycon, params.map(_.deepDealias))
406
405
case aliasingBounds : AliasingBounds =>
407
406
aliasingBounds.derivedAlias(aliasingBounds.alias.dealias)
Original file line number Diff line number Diff line change @@ -654,7 +654,7 @@ class HoverTermSuite extends BaseHoverSuite:
654
654
|""" .stripMargin
655
655
)
656
656
657
- @ Test def `dealias-type-members-in-structural-types-1 ` : Unit =
657
+ @ Test def `dealias-type-members-in-structural-types1 ` : Unit =
658
658
check(
659
659
""" object Obj {
660
660
| trait A extends Sup { self =>
@@ -669,7 +669,7 @@ class HoverTermSuite extends BaseHoverSuite:
669
669
""" def member: Int""" .stripMargin.hover
670
670
)
671
671
672
- @ Test def `dealias-type-members-in-structural-types-2 ` : Unit =
672
+ @ Test def `dealias-type-members-in-structural-types2 ` : Unit =
673
673
check(
674
674
""" object Obj:
675
675
| trait A extends Sup { self =>
You can’t perform that action at this time.
0 commit comments