Parboiled2 Parser示例

时间:2015-03-24 01:59:32

标签: scala parsing parboiled2

我正试图从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 规则

1 个答案:

答案 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