summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean McDirmid <sean.mcdirmid@gmail.com>2007-12-02 13:11:06 +0000
committerSean McDirmid <sean.mcdirmid@gmail.com>2007-12-02 13:11:06 +0000
commit8647f299b0aa4195b52457cb53cddbd3206b5a5b (patch)
treeb79062b7d5bcb70cb04cae6d231388027256720c /src
parent6eacab84a957dab7e75cd87e0ecb85b2d0c69939 (diff)
downloadscala-8647f299b0aa4195b52457cb53cddbd3206b5a5b.tar.gz
scala-8647f299b0aa4195b52457cb53cddbd3206b5a5b.tar.bz2
scala-8647f299b0aa4195b52457cb53cddbd3206b5a5b.zip
nuking noide and generate ides phase
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index 6326b9e130..9a746bf1f3 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -262,10 +262,6 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
val global: Global.this.type = Global.this
}
- object generateIdeMaps extends GenerateIdeMaps {
- val global: Global.this.type = Global.this
- }
-
object superAccessors extends SuperAccessors {
val global: Global.this.type = Global.this
}
@@ -381,10 +377,7 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
*/
protected def builtInPhaseDescriptors: List[SubComponent] = List(
analyzer.namerFactory: SubComponent, // note: types are there because otherwise
- analyzer.typerFactory: SubComponent // consistency check after refchecks would fail.
- ) :::
- (if (inIDE) List(generateIdeMaps) else List()) ::: // optionally generate .ide files from symbol info that can be used in the IDE
- List(
+ analyzer.typerFactory: SubComponent, // consistency check after refchecks would fail.
superAccessors, // add super accessors
pickler, // serializes symbol tables
refchecks, // perform reference and override checking, translate nested objects