summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 93bdc02d50..1c59d6d8bc 100644
--- a/src/compiler/scala/tools/nsc/Global.scala
+++ b/src/compiler/scala/tools/nsc/Global.scala
@@ -444,9 +444,9 @@ class Global(var settings: Settings, var reporter: Reporter) extends SymbolTable
//Console.println("starting run: " + id)
var currentUnit: CompilationUnit = _
curRun = this
- val firstPhase = syntaxAnalyzer.newPhase(NoPhase)
+ private val firstPhase = syntaxAnalyzer.newPhase(NoPhase)
phase = firstPhase
- definitions.init // needs firstPhase and phase to be defined != NoPhase,
+ definitions.init // needs phase to be defined != NoPhase,
// that's why it is placed here.
/** Deprecation warnings occurred */