我正试图从parboiled2尝试这个例子:
scala> class MyParser(val input: org.parboiled2.ParserInput)
extends org.parboiled2.Parser {
def f = rule { capture("foo" ~ push(42))
}
}
defined class MyParser
然后,我创建了一个新的MyParser
,其输入为"foo"
。
scala> new MyParser("foo").f
res11: org.parboiled2.Rule[shapeless.HNil,shapeless.::
[Int,shapeless.::[String,shapeless.HNil]]] = null
然而,返回值为null
。
如何从REPL运行这个简单的f
规则?
答案 0 :(得分:7)
Parboiled 2' s rule
是一个宏,使用rule
定义的方法并不打算在其他规则的上下文之外引用或调用run()
。如果您有以下内容:
import org.parboiled2._
class MyParser(val input: ParserInput) extends Parser {
def f = rule { capture("foo" ~ push(42)) }
}
您可以像这样使用它(为清晰起见清理了类型):
scala> new MyParser("foo").f.run()
res0: scala.util.Try[Int :: String :: HNil] = Success(42 :: foo :: HNil)
如果您不想要Try
,则可以使用其中一个delivery schemes。