aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/Run.scala
blob: 9622219947c9c0e216675b0b4ec64e5879a24536 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                   


                                       


                                                  


















                                                  


                                        
 
package dotty.tools
package dotc

import core._
import Contexts._, Periods._, Symbols._
import io.PlainFile
import util.{SourceFile, NoSource}

class Run(comp: Compiler)(implicit ctx: Context) {

  var units: List[CompilationUnit] = _

  def getSource(fileName: String): SourceFile = {
    val f = new PlainFile(fileName)
    if (f.exists) new SourceFile(f)
    else {
      ctx.error(s"not found: $fileName")
      NoSource
    }
  }

  def compile(fileNames: List[String]): Unit = {
    val sources = fileNames map getSource
    if (sources forall (_.exists)) {
      units = sources map (new CompilationUnit(_))
      for (phase <- ctx.allPhases)
        phase.runOn(units)
    }
  }

  def printSummary(): Unit =
    ctx.typerState.reporter.printSummary
}