preserve key+configuration ambiguity through task+extra parsing. fixes #135

This commit is contained in:
Mark Harrah 2011-08-05 21:59:49 -04:00
parent baea865ecf
commit b35d9bfcfb
1 changed files with 1 additions and 0 deletions

View File

@ -346,6 +346,7 @@ trait ParserMain
def not(p: Parser[_]): Parser[Unit] = new Not(p)
def oneOf[T](p: Seq[Parser[T]]): Parser[T] = p.reduceLeft(_ | _)
def seq[T](p: Seq[Parser[T]]): Parser[Seq[T]] = seq0(p, Nil)
def seq0[T](p: Seq[Parser[T]], errors: => Seq[String]): Parser[Seq[T]] =
{