Skip to content

Commit

Permalink
Improve error reporting for missing members (#19800)
Browse files Browse the repository at this point in the history
Fixes: #19731
  • Loading branch information
hamzaremmal authored Feb 29, 2024
2 parents c9686a7 + 1f7789f commit 9fe0111
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 4 deletions.
8 changes: 4 additions & 4 deletions compiler/src/dotty/tools/dotc/typer/RefChecks.scala
Original file line number Diff line number Diff line change
Expand Up @@ -702,8 +702,8 @@ object RefChecks {

val missingMethods = grouped.toList flatMap {
case (name, syms) =>
val withoutSetters = syms filterNot (_.isSetter)
if (withoutSetters.nonEmpty) withoutSetters else syms
syms.filterConserve(!_.isSetter)
.distinctBy(_.signature) // Avoid duplication for similar definitions (#19731)
}

def stubImplementations: List[String] = {
Expand All @@ -714,7 +714,7 @@ object RefChecks {

if (regrouped.tail.isEmpty)
membersStrings(regrouped.head._2)
else (regrouped.sortBy("" + _._1.name) flatMap {
else (regrouped.sortBy(_._1.name.toString()) flatMap {
case (owner, members) =>
("// Members declared in " + owner.fullName) +: membersStrings(members) :+ ""
}).init
Expand All @@ -733,7 +733,7 @@ object RefChecks {
return
}

for (member <- missing) {
for (member <- missingMethods) {
def showDclAndLocation(sym: Symbol) =
s"${sym.showDcl} in ${sym.owner.showLocated}"
def undefined(msg: String) =
Expand Down
27 changes: 27 additions & 0 deletions tests/neg/i19731.check
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
-- Error: tests/neg/i19731.scala:4:6 -----------------------------------------------------------------------------------
4 |class F1 extends Foo: // error
| ^
| class F1 needs to be abstract, since def foo(): Unit in class F1 is not defined
-- Error: tests/neg/i19731.scala:7:6 -----------------------------------------------------------------------------------
7 |class F2 extends Foo: // error
| ^
| class F2 needs to be abstract, since:
| it has 2 unimplemented members.
| /** As seen from class F2, the missing signatures are as follows.
| * For convenience, these are usable as stub implementations.
| */
| def foo(): Unit = ???
| def foo(x: Int): Unit = ???
-- Error: tests/neg/i19731.scala:16:6 ----------------------------------------------------------------------------------
16 |class B1 extends Bar: // error
| ^
| class B1 needs to be abstract, since:
| it has 2 unimplemented members.
| /** As seen from class B1, the missing signatures are as follows.
| * For convenience, these are usable as stub implementations.
| */
| // Members declared in B1
| def foo(x: Int): Unit = ???
|
| // Members declared in Bar
| def foo(): Unit = ???
17 changes: 17 additions & 0 deletions tests/neg/i19731.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
trait Foo:
def foo(): Unit

class F1 extends Foo: // error
def foo(): Unit

class F2 extends Foo: // error
def foo(): Unit
def foo(x: Int): Unit


trait Bar:
def foo(): Unit
def foo(x: Int): Unit

class B1 extends Bar: // error
def foo(x: Int): Unit

0 comments on commit 9fe0111

Please sign in to comment.