aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-02-09 16:36:15 +0100
committerMartin Odersky <odersky@gmail.com>2014-02-09 16:40:31 +0100
commit98ccfd77c4748487190387c4e8b3646d77116e22 (patch)
tree32abfb55c0bcb4c6e6affe50655903c814e0203b /src/dotty/tools/dotc/core/Symbols.scala
parent9d924441fdeab3bbe0c6cca8c1ecce6ecf64a608 (diff)
downloaddotty-98ccfd77c4748487190387c4e8b3646d77116e22.tar.gz
dotty-98ccfd77c4748487190387c4e8b3646d77116e22.tar.bz2
dotty-98ccfd77c4748487190387c4e8b3646d77116e22.zip
Getting rid of some CompleInCreationContexts
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 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