Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Backport "Improve error reporting for missing members" to LTS #20963

Merged
merged 1 commit into from
Jul 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -622,8 +622,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 @@ -634,7 +634,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 @@ -653,7 +653,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