aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dotty/tools/dotc/core/Symbols.scala')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index 12c3c7beb..0e439cb5f 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -182,7 +182,7 @@ trait Symbols { this: Context =>
def stubCompleter = new StubInfo()(condensed)
val normalizedOwner = if (owner is ModuleVal) owner.moduleClass else owner
println(s"creating stub for ${name.show}, owner = ${normalizedOwner.denot.debugString}, file = $file")
- println(s"decls = ${normalizedOwner.preCompleteDecls.toList.map(_.debugString).mkString("\n ")}") // !!! DEBUG
+ println(s"decls = ${normalizedOwner.decls.toList.map(_.debugString).mkString("\n ")}") // !!! DEBUG
throw new Error()
val stub = name match {
case name: TermName =>
@@ -376,7 +376,7 @@ object Symbols {
override def toString: String =
if (lastDenot == null) s"Naked$prefixString#$id"
- else lastDenot.toString
+ else lastDenot.toString +"#"+id // !!! DEBUG
def toText(implicit ctx: Context): Text = ctx.toText(this)