LARA

package toolc
 
import parser.Parser
 
import scala.io.Source
 
class Compiler(val fileName: String) extends Reporter with Parser {
 
  val source: Source = Source.fromFile(fileName).withPositioning(true)
 
  def compile: Unit = {
    import parser.Trees._
 
    // Parsing
    var parsedTree: Option[Tree] = None
    parsedTree = Some(parseSource)
    terminateIfErrors
 
    val mainProg: Program = parsedTree match {
      case Some(p:Program) => p
      case _ => scala.Predef.error("Main program expected from parser.")
    }
 
    // pretty printing:
    println(TreePrinter(mainProg))
  }
}