我试图浏览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
被调用的某个地方,有人可以帮我跟踪如何调用它以及如何初始化编译器吗?
任何指针都会非常感激。
由于
答案 0 :(得分:1)
MainClass
扩展Driver
,其中包含main
方法:
def main(args: Array[String]) {
process(args)
sys.exit(if (reporter.hasErrors) 1 else 0)
}
同时,对象Main
扩展MainClass
,这意味着有一个Main.class
文件,其中包含实际调用上述非静态方法的public static void main(String[] args)
转发器方法对象Main
。有关如何在Scala中编译object
的详细信息,请参阅this question。
这意味着在运行scala编译器时scala.tools.nsc.Main
可以用作主类(这在scalac
脚本中的某处是硬编码的。)
newCompiler
和doCompile
由process
调用。