summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-09-11 19:49:03 +0000
committerMartin Odersky <odersky@gmail.com>2006-09-11 19:49:03 +0000
commit1237c5202669272825990e0c41803bd39a0846c8 (patch)
tree2583a67e460da54fd23acfeb1887f0e7a47ec51a /src/compiler/scala/tools/nsc/Global.scala
parent9a8e9075dc345207d1979e703907ce923fff8691 (diff)
downloadscala-1237c5202669272825990e0c41803bd39a0846c8.tar.gz
scala-1237c5202669272825990e0c41803bd39a0846c8.tar.bz2
scala-1237c5202669272825990e0c41803bd39a0846c8.zip
changed explicit outer scheme
repaired tree checkers
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index 00d336cc1e..c38f462857 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -337,8 +337,8 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
analyzer.NoContext.make(EmptyTree, Global.this.definitions.RootClass, newScope))
def phaseDescriptors: List[SubComponent] = List(
- analyzer.namerFactory,
- analyzer.typerFactory,
+ analyzer.namerFactory: SubComponent, // note: types are there because otherwise
+ analyzer.typerFactory: SubComponent, // consistency check after refchecks would fail.
superAccessors,
pickler,
refchecks,