summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/Global.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2009-12-23 15:02:17 +0000
committerMartin Odersky <odersky@gmail.com>2009-12-23 15:02:17 +0000
commit154326ab0c464bd10648b03998ea7a1700a572bb (patch)
treeda054d009cb40644447b9c72d965610855a0f155 /src/compiler/scala/tools/nsc/Global.scala
parent0cc326c7676844412ce0a2b5a3283a834041b86c (diff)
downloadscala-154326ab0c464bd10648b03998ea7a1700a572bb.tar.gz
scala-154326ab0c464bd10648b03998ea7a1700a572bb.tar.bz2
scala-154326ab0c464bd10648b03998ea7a1700a572bb.zip
Weeds out stale symbols in typer.
Diffstat (limited to 'src/compiler/scala/tools/nsc/Global.scala')
-rw-r--r--src/compiler/scala/tools/nsc/Global.scala16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/compiler/scala/tools/nsc/Global.scala b/src/compiler/scala/tools/nsc/Global.scala
index dfa8dcbef4..1128150cb8 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -673,9 +673,9 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
refreshProgress
}
private def refreshProgress =
- if (fileset.size > 0)
- progress((phasec * fileset.size) + unitc,
- (phaseDescriptors.length-1) * fileset.size) // terminal phase not part of the progress display
+ if (compiledFiles.size > 0)
+ progress((phasec * compiledFiles.size) + unitc,
+ (phaseDescriptors.length-1) * compiledFiles.size) // terminal phase not part of the progress display
// ----- finding phases --------------------------------------------
@@ -704,12 +704,12 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
// ----------- Units and top-level classes and objects --------
private var unitbuf = new ListBuffer[CompilationUnit]
- private var fileset = new HashSet[AbstractFile]
+ var compiledFiles = new HashSet[AbstractFile]
/** add unit to be compiled in this run */
private def addUnit(unit: CompilationUnit) {
unitbuf += unit
- fileset += unit.source.file
+ compiledFiles += unit.source.file
}
/* An iterator returning all the units being compiled in this run */
@@ -847,12 +847,12 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
* to phase "namer".
*/
def compileLate(file: AbstractFile) {
- if (fileset eq null) {
+ if (compiledFiles eq null) {
val msg = "No class file for " + file +
" was found\n(This file cannot be loaded as a source file)"
inform(msg)
throw new FatalError(msg)
- } else if (!(fileset contains file)) {
+ } else if (!(compiledFiles contains file)) {
compileLate(new CompilationUnit(getSourceFile(file)))
}
}
@@ -863,7 +863,7 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
def compileLate(unit: CompilationUnit) {
addUnit(unit)
var localPhase = firstPhase.asInstanceOf[GlobalPhase]
- while (localPhase != null && (localPhase.id < globalPhase.id || localPhase.id <= namerPhase.id)/* && !reporter.hasErrors*/) {
+ while (localPhase != null && (localPhase.id < globalPhase.id || localPhase.id < typerPhase.id)/* && !reporter.hasErrors*/) {
val oldSource = reporter.getSource
reporter.withSource(unit.source) {
atPhase(localPhase)(localPhase.applyPhase(unit))