From 98ccfd77c4748487190387c4e8b3646d77116e22 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Sun, 9 Feb 2014 16:36:15 +0100 Subject: Getting rid of some CompleInCreationContexts --- src/dotty/tools/dotc/core/Symbols.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/dotty/tools/dotc/core/Symbols.scala') diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala index e66f3b190..6da864bf6 100644 --- a/src/dotty/tools/dotc/core/Symbols.scala +++ b/src/dotty/tools/dotc/core/Symbols.scala @@ -126,7 +126,7 @@ trait Symbols { this: Context => val mdenot = SymDenotation( module, owner, name, modFlags | ModuleCreationFlags, if (cdenot.isCompleted) TypeRef(owner.thisType, modclsName) withSym modcls - else new ModuleCompleter(modcls)(condensed)) + else new ModuleCompleter(modcls)) module.denot = mdenot modcls.denot = cdenot module @@ -181,7 +181,7 @@ trait Symbols { this: Context => * when attempted to be completed. */ def newStubSymbol(owner: Symbol, name: Name, file: AbstractFile = null): Symbol = { - def stubCompleter = new StubInfo()(condensed) + 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 -- cgit v1.2.3