aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2014-12-31 15:14:25 +0100
committerDmitry Petrashko <dark@d-d.me>2014-12-31 15:14:25 +0100
commit344b055e23ceea6fd57d6240f5dda732e41028bd (patch)
treeede7b173791fc5bee987b720e57739ccda4a81de /src/dotty/tools/dotc/core/Symbols.scala
parent7b5d1b161009e76badaefd7a83ff243d6096498e (diff)
parent43fefd527e3ec424a6b1232aed63b50dd6a71342 (diff)
downloaddotty-344b055e23ceea6fd57d6240f5dda732e41028bd.tar.gz
dotty-344b055e23ceea6fd57d6240f5dda732e41028bd.tar.bz2
dotty-344b055e23ceea6fd57d6240f5dda732e41028bd.zip
Merge pull request #310 from dotty-staging/fix/#305-annot-bootstrap
Fix/#305 annot bootstrap
Diffstat (limited to 'src/dotty/tools/dotc/core/Symbols.scala')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index 2be97691f..13b61c0fd 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -192,7 +192,7 @@ trait Symbols { this: Context =>
def stubCompleter = new StubInfo()
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.decls.toList.map(_.debugString).mkString("\n ")}") // !!! DEBUG
+ println(s"decls = ${normalizedOwner.unforcedDecls.toList.map(_.debugString).mkString("\n ")}") // !!! DEBUG
//if (base.settings.debug.value) throw new Error()
val stub = name match {
case name: TermName =>