final case class NotConsumedAll[Err](lastFailure: Option[ParserError[Err]]) extends ParserError[Err] with Product with Serializable
The parser was supposed to consume the full input but it did not.
- lastFailure
the last encountered failure, if any
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- NotConsumedAll
- Serializable
- Product
- Equals
- ParserError
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new NotConsumedAll(lastFailure: Option[ParserError[Err]])
- lastFailure
the last encountered failure, if any
Value Members
- def addFailedBranch[Err2 >: Err](error: ParserError[Err2]): ParserError[Err2]
- Definition Classes
- ParserError
- val lastFailure: Option[ParserError[Err]]
- def map[Err2](f: (Err) => Err2): ParserError[Err2]
- Definition Classes
- ParserError
- def productElementNames: Iterator[String]
- Definition Classes
- Product