We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f42a6 commit 14c1b3eCopy full SHA for 14c1b3e
src/dotty/tools/dotc/core/Denotations.scala
@@ -216,8 +216,16 @@ object Denotations {
216
println(s"*** missing method: ${name.toString} in $this")
217
info.decls.checkConsistent()
218
println(i"decls = ${info.decls}")
219
- if (slowSearch(name.toTermName).exists)
+ if (slowSearch(name.toTermName).exists) {
220
System.err.println(i"**** slow search found: ${slowSearch(name.toTermName)}")
221
+ System.err.println("scope entries found:")
222
+ var e = info.decls.lastEntry
223
+ while (e != null) {
224
+ println(e.name)
225
+ e = e.prev
226
+ }
227
+ System.err.println("no more entries found")
228
229
throw new TypeError(s"Missing method: $this . $name")
230
}
231
0 commit comments