考虑this源代码,该源代码为Scala中的术语语言实现了解析器。用于测试其功能的主要功能定义为:

def main(args: Array[String]): Unit = {
    val stdin = new java.io.BufferedReader(new java.io.InputStreamReader(System.in))
    val tokens = new lexical.Scanner(stdin.readLine())
    phrase(term)(tokens) match {
      case Success(trees, _) =>
        for (t <- path(trees))
          println(t)
        try {
          print("Big step: ")
          println(eval(trees))
        } catch {
          case TermIsStuck(t) => println("Stuck term: " + t)
        }
      case e =>
        println(e)
    }
  }


我写了以下测试:

package fos

import org.scalatest.FunSuite


class ArithmeticTest extends FunSuite {

  test("testTerm") {

    Arithmetic.term(new Arithmetic.lexical.Scanner("if iszero pred pred 2 then if iszero 0 then true else false else false")) match {
      case Success(res,next) => assert(res == If(IsZero(Pred(Pred(Succ(Succ(Zero))))),If(IsZero(Zero),True,False),False))
      case Failure(msg,next) => assert(false)
    }
  }

}


不幸的是,即使像上面的链接中那样混入StandardTokenParsers,也无法识别成功和失败的情况。我该如何运作?

最佳答案

您需要Arithmetic.SuccessArithmetic.Failure,就像您拥有Arithmetic.lexical.Scanner一样。或者,您可以import Arithmetic._

07-28 13:12