Scala 3 中的 `scala.tools.nsc.MainGenericRunner` 是什么?
What's the equivalent of `scala.tools.nsc.MainGenericRunner` in Scala 3?
在 dotty 中 scala.tools.nsc.MainGenericRunner
相当于什么?
我签收了包裹dotty.tools.dotc
https://github.com/lampepfl/dotty/tree/master/compiler/src/dotty/tools/dotc
但找不到任何东西。
我尝试使用 dotty.tools.dotc.Run
但出现错误
wrap: java.lang.NoSuchMethodException: dotty.tools.dotc.Run.main([Ljava.lang.String;)
Scala 3 控制台通常称为 REPL。它在 Scala 3 中的主要入口点是 dotty.tools.repl.Main
。你可以找到它 here.
最接近的对应物是 dotty.tools.MainGenericRunner
,尽管它不提供相同的功能。
在 dotty 中 scala.tools.nsc.MainGenericRunner
相当于什么?
我签收了包裹dotty.tools.dotc
https://github.com/lampepfl/dotty/tree/master/compiler/src/dotty/tools/dotc
但找不到任何东西。
我尝试使用 dotty.tools.dotc.Run
但出现错误
wrap: java.lang.NoSuchMethodException: dotty.tools.dotc.Run.main([Ljava.lang.String;)
Scala 3 控制台通常称为 REPL。它在 Scala 3 中的主要入口点是 dotty.tools.repl.Main
。你可以找到它 here.
最接近的对应物是 dotty.tools.MainGenericRunner
,尽管它不提供相同的功能。