我试图通过 nsc(新的 scala 编译器)的代码。我有点困惑Main.scala
。它的实现如下:
/* NSC -- new Scala compiler
* Copyright 2005-2013 LAMP/EPFL
* @author Martin Odersky
*/
package scala.tools
package nsc
import scala.language.postfixOps
/** The main class for NSC, a compiler for the programming
* language Scala.
*/
class MainClass extends Driver with EvalLoop {
def resident(compiler: Global): Unit = loop { line =>
val command = new CompilerCommand(line split "\\s+" toList, new Settings(scalacError))
compiler.reporter.reset()
new compiler.Run() compile command.files
}
override def newCompiler(): Global = Global(settings, reporter)
override def doCompile(compiler: Global) {
if (settings.resident) resident(compiler)
else super.doCompile(compiler)
}
}
object Main extends MainClass { }
我的第一个问题是,Main
编译器进程如何调用?当我按照以下方式称呼某些东西时:
scalac [ <options> ] <source files>
在某个地方,newCompiler
并且doCompile
正在被调用,有人可以帮助我跟踪它是如何被调用的以及编译器是如何被初始化的吗?
任何指针将不胜感激。
谢谢