Skip to content

Commit 2f98500

Browse files
committed
Detect and report double definitions between toplevel files
Detect and report double definitions between members of different toplevel files. This required a fix in method `precedesIn` for the case where neither owner is part of the checked baseclass sequence. In that case the answer should be `false` but we reported `true`.
1 parent dfa89ef commit 2f98500

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

compiler/src/dotty/tools/dotc/core/Denotations.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ object Denotations {
412412
def precedes(sym1: Symbol, sym2: Symbol) = {
413413
def precedesIn(bcs: List[ClassSymbol]): Boolean = bcs match {
414414
case bc :: bcs1 => (sym1 eq bc) || !(sym2 eq bc) && precedesIn(bcs1)
415-
case Nil => true
415+
case Nil => false
416416
}
417417
(sym1 ne sym2) &&
418418
(sym1.derivesFrom(sym2) ||
@@ -1183,7 +1183,7 @@ object Denotations {
11831183
*/
11841184
def isDoubleDef(sym1: Symbol, sym2: Symbol)(implicit ctx: Context): Boolean =
11851185
(sym1.exists && sym2.exists &&
1186-
(sym1 ne sym2) && (sym1.owner eq sym2.owner) &&
1186+
(sym1 `ne` sym2) && (sym1.effectiveOwner `eq` sym2.effectiveOwner) &&
11871187
!sym1.is(Bridge) && !sym2.is(Bridge))
11881188

11891189
def doubleDefError(denot1: Denotation, denot2: Denotation, pre: Type = NoPrefix)(implicit ctx: Context): Nothing = {
@@ -1193,7 +1193,7 @@ object Denotations {
11931193
throw new MergeError(sym1, sym2, sym1.info, sym2.info, pre) {
11941194
override def addendum(implicit ctx: Context) =
11951195
i"""
1196-
|they are both defined in ${sym1.owner} but have matching signatures
1196+
|they are both defined in ${sym1.effectiveOwner} but have matching signatures
11971197
| ${denot1.info} and
11981198
| ${denot2.info}${super.addendum}"""
11991199
}
@@ -1227,7 +1227,7 @@ object Denotations {
12271227
final case class DenotUnion(denot1: PreDenotation, denot2: PreDenotation) extends MultiPreDenotation {
12281228
def exists: Boolean = true
12291229
def toDenot(pre: Type)(implicit ctx: Context): Denotation =
1230-
(denot1 toDenot pre) & (denot2 toDenot pre, pre)
1230+
denot1.toDenot(pre).&(denot2.toDenot(pre), pre)
12311231
def containsSym(sym: Symbol): Boolean =
12321232
(denot1 containsSym sym) || (denot2 containsSym sym)
12331233
type AsSeenFromResult = PreDenotation

compiler/src/dotty/tools/dotc/core/TypeErrors.scala

+9-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,15 @@ class MergeError(val sym1: Symbol, val sym2: Symbol, val tp1: Type, val tp2: Typ
169169
}
170170

171171
protected def addendum(implicit ctx: Context): String =
172-
if (prefix `eq` NoPrefix) "" else i"\nas members of type $prefix"
172+
if (prefix `eq` NoPrefix) ""
173+
else {
174+
val owner = prefix match {
175+
case prefix: ThisType => prefix.cls.show
176+
case prefix: TermRef => prefix.symbol.show
177+
case _ => i"type $prefix"
178+
}
179+
s"\nas members of $owner"
180+
}
173181

174182
override def toMessage(implicit ctx: Context): Message = {
175183
if (ctx.debug) printStackTrace()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
object Test extends App{
2+
hello("hello") // error: Cannot merge
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello(x: String): Unit =
2+
println(s"hello: $x")
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
def hello(x: String): Unit =
2+
println(s"hi, $x")

0 commit comments

Comments
 (0)