scala nsc 中的主要方法调用
Main method invocation in scala nsc
我正在尝试查看 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
的某个地方,有人可以帮助我跟踪它是如何调用的以及编译器是如何初始化的吗?
任何指点将不胜感激。
谢谢
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.tools.nsc.Main
可以用作 main class 当 运行 scala 编译器(这在scalac
脚本)。
newCompiler
和 doCompile
被 process
调用。
我正在尝试查看 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
的某个地方,有人可以帮助我跟踪它是如何调用的以及编译器是如何初始化的吗?
任何指点将不胜感激。
谢谢
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.tools.nsc.Main
可以用作 main class 当 运行 scala 编译器(这在scalac
脚本)。
newCompiler
和 doCompile
被 process
调用。