1

我对为什么以下使用 scala fastparse 0.4.3 的代码无法通过类型检查感到困惑。

val White = WhitespaceApi.Wrapper{
  import fastparse.all._
  NoTrace(CharIn(" \t\n").rep)
}
import fastparse.noApi._
import White._

case class Term(tokens: Seq[String])
case class Terms(terms: Seq[Term])

val token = P[String] ( CharIn('a' to 'z', 'A' to 'Z', '0' to '9').rep(min=1).!)
val term: P[Term] = P("[" ~ token.!.rep(sep=" ", min=1) ~ "]").map(x => Term(x))
val terms = P("(" ~ term.!.rep(sep=" ", min=1) ~ ")").map{x => Terms(x)}
val parse = terms.parse("([ab bd ef] [xy wa dd] [jk mn op])")

错误消息:

[error] .../MyParser.scala: type mismatch;
[error]  found   : Seq[String]
[error]  required: Seq[Term]
[error]     val terms = P("(" ~ term.!.rep(sep=" ", min=1) ~")").map{x => Terms(x)}
[error]                                                                         ^

我想,因为term是类型Term,并且由于terms模式使用term.!.rep(...,它应该得到一个Seq[Term]

4

1 回答 1

2

我想到了。我的错误是!terms. 该行应改为:

val terms = P("(" ~ term.rep(sep=" ", min=1) ~ ")").map{x => Terms(x)}

请注意,term.!.rep(已重写为term.rep(. 显然,在任何规则中捕获将返回捕获的子规则匹配的文本,覆盖子规则实际返回的内容。我想这是正确使用时的功能。:)

于 2017-06-07T00:56:21.337 回答