gpt4 book ai didi

scala - 将 scalac 插件拆分为多个文件

转载 作者:行者123 更新时间:2023-12-04 14:18:41 24 4
gpt4 key购买 nike

我想拆分我的 scalac插件到多个文件中。这听起来很简单,但由于来自 import global._ 的路径相关类型问题,我还没有设法实现它。线。

这是 Lex Spoon 的示例插件:

package localhost

import scala.tools.nsc
import nsc.Global
import nsc.Phase
import nsc.plugins.Plugin
import nsc.plugins.PluginComponent

class DivByZero(val global: Global) extends Plugin {
import global._

val name = "divbyzero"
val description = "checks for division by zero"
val components = List[PluginComponent](Component)

private object Component extends PluginComponent {
val global: DivByZero.this.global.type = DivByZero.this.global
val runsAfter = "refchecks"
// Using the Scala Compiler 2.8.x the runsAfter should be written as below
// val runsAfter = List[String]("refchecks");
val phaseName = DivByZero.this.name
def newPhase(_prev: Phase) = new DivByZeroPhase(_prev)

class DivByZeroPhase(prev: Phase) extends StdPhase(prev) {
override def name = DivByZero.this.name
def apply(unit: CompilationUnit) {
for ( tree @ Apply(Select(rcvr, nme.DIV), List(Literal(Constant(0)))) <- unit.body;
if rcvr.tpe <:< definitions.IntClass.tpe)
{
unit.error(tree.pos, "definitely division by zero")
}
}
}
}
}

怎么放 ComponentDivByZeroPhase在他们自己的文件中没有 import global._在适用范围?

最佳答案

这是一个非常古老的项目,我做了同样的事情:

https://github.com/jsuereth/osgi-scalac-plugin/blob/master/src/main/scala/scala/osgi/compiler/OsgiPlugin.scala

如果您不需要从全局传递依赖于路径的类型,请不要担心尝试保持它的“this.global”部分相关。

关于scala - 将 scalac 插件拆分为多个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5629127/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com