@@ -39,7 +39,7 @@ class Run(comp: Compiler, ictx: Context) extends ImplicitRunInfo with Constraint
3939 * for type checking.
4040 * imports For each element of RootImports, an import context
4141 */
42- protected [ this ] def rootContext (implicit ctx : Context ): Context = {
42+ protected def rootContext (implicit ctx : Context ): Context = {
4343 ctx.initialize()(ctx)
4444 ctx.base.setPhasePlan(comp.phases)
4545 val rootScope = new MutableScope
@@ -59,19 +59,19 @@ class Run(comp: Compiler, ictx: Context) extends ImplicitRunInfo with Constraint
5959 defn.RootImportFns .foldLeft(start.setRun(this ))(addImport)
6060 }
6161
62- private [ this ] var compiling = false
62+ private var compiling = false
6363
64- private [ this ] var myCtx = rootContext(ictx)
64+ private var myCtx = rootContext(ictx)
6565
6666 /** The context created for this run */
6767 def runContext : Context = myCtx
6868
69- protected [ this ] implicit def ctx : Context = myCtx
69+ protected implicit def ctx : Context = myCtx
7070 assert(ctx.runId <= Periods .MaxPossibleRunId )
7171
72- private [ this ] var myUnits : List [CompilationUnit ] = _
73- private [ this ] var myUnitsCached : List [CompilationUnit ] = _
74- private [ this ] var myFiles : Set [AbstractFile ] = _
72+ private var myUnits : List [CompilationUnit ] = _
73+ private var myUnitsCached : List [CompilationUnit ] = _
74+ private var myFiles : Set [AbstractFile ] = _
7575
7676 /** The compilation units currently being compiled, this may return different
7777 * results over time.
@@ -94,10 +94,10 @@ class Run(comp: Compiler, ictx: Context) extends ImplicitRunInfo with Constraint
9494 }
9595
9696 /** The source files of all late entered symbols, as a set */
97- private [ this ] var lateFiles = mutable.Set [AbstractFile ]()
97+ private var lateFiles = mutable.Set [AbstractFile ]()
9898
9999 /** Actions that need to be performed at the end of the current compilation run */
100- private [ this ] var finalizeActions = mutable.ListBuffer [() => Unit ]()
100+ private var finalizeActions = mutable.ListBuffer [() => Unit ]()
101101
102102 def compile (fileNames : List [String ]): Unit = try {
103103 val sources = fileNames.map(ctx.getSource(_))
0 commit comments