Skip to content

Commit 7995e9b

Browse files
authored
Check only stable qual for import prefix (#22633)
Selection from a tree with synthetic span looks like a rewrite from imported symbol, but only check that if the qualifier is stable. In the example, it was an implicit class (`EitherOps`), which in turn induced many costly, unnecessary type comparisons. Fixes #22629
2 parents b2b0115 + 5429dfa commit 7995e9b

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

compiler/src/dotty/tools/dotc/transform/CheckUnused.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class CheckUnused private (phaseMode: PhaseMode, suffix: String) extends MiniPha
7373
val target = res.dealias.typeSymbol
7474
resolveUsage(target, target.name, res.importPrefix.skipPackageObject) // case _: T =>
7575
case _ =>
76-
else if tree.qualifier.srcPos.isSynthetic || name.exists(_ != tree.symbol.name) then
76+
else if tree.qualifier.srcPos.isSynthetic && tree.qualifier.tpe.isStable || name.exists(_ != tree.symbol.name) then
7777
if !ignoreTree(tree) then
7878
resolveUsage(tree.symbol, name, tree.qualifier.tpe)
7979
else

tests/warn/i22629.scala

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
//> using options -Wunused:all -Yno-deep-subtypes "-Wconf:msg=set repeatedly:s"
2+
3+
//import either.*
4+
5+
trait ResultMapper[A] {
6+
final def map[B](f: A => B): ResultMapper[B] = ???
7+
8+
infix final def and[B](other: ResultMapper[B]): ResultMapper[(A, B)] = ???
9+
}
10+
11+
trait BoilerplateResultMappers {
12+
13+
def and[B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W](
14+
b: ResultMapper[B], c: ResultMapper[C], d: ResultMapper[D], e: ResultMapper[E], f: ResultMapper[F], g: ResultMapper[G], h: ResultMapper[H], i: ResultMapper[I], j: ResultMapper[J], k: ResultMapper[K], l: ResultMapper[L], m: ResultMapper[M], n: ResultMapper[N], o: ResultMapper[O], p: ResultMapper[P], q: ResultMapper[Q], r: ResultMapper[R], s: ResultMapper[S], t: ResultMapper[T], u: ResultMapper[U], v: ResultMapper[V], w: ResultMapper[W]
15+
): ResultMapper[(B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W)] =
16+
(b and c and d and e and f and g and h and i and j and k and l and m and n and o and p and q and r and s and t and u and v and w).map {
17+
case ((((((((((((((((((((((b), c), d), e), f), g), h), i), j), k), l), m), n), o), p), q), r), s), t), u), v), w) =>
18+
(b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w)
19+
}
20+
}
21+
22+
/*
23+
object either {
24+
type ResultMapperException = RuntimeException
25+
implicit class EitherOps[A](private val ea: Either[ResultMapperException, A]) extends AnyVal {
26+
def and[B](eb: Either[ResultMapperException, B]): Either[ResultMapperException, (A, B)] =
27+
(ea, eb) match {
28+
case (Right(a), Right(b)) =>
29+
Right((a, b))
30+
31+
case (Right(_), Left(ex)) =>
32+
Left(ex)
33+
34+
case (Left(ex), Right(_)) =>
35+
Left(ex)
36+
37+
case (Left(_), Left(_)) =>
38+
Left(RuntimeException())
39+
}
40+
}
41+
}
42+
*/

0 commit comments

Comments
 (0)