Packages

final case class UnknownFailure(nameStack: List[String], position: Int) extends ParserError[Nothing] with Product with Serializable

Unknown parser error. This is only produced in exceptional cases that should not happen, for example if the unsafe regex variants encounter an error.

nameStack

Stack of named parsers until reaching the failure

position

Input stream position

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnknownFailure
  2. Serializable
  3. Product
  4. Equals
  5. ParserError
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new UnknownFailure(nameStack: List[String], position: Int)

    nameStack

    Stack of named parsers until reaching the failure

    position

    Input stream position

Value Members

  1. def addFailedBranch[Err2 >: Nothing](error: ParserError[Err2]): ParserError[Err2]
    Definition Classes
    ParserError
  2. def map[Err2](f: (Nothing) => Err2): ParserError[Err2]
    Definition Classes
    ParserError
  3. val nameStack: List[String]
  4. val position: Int
  5. def productElementNames: Iterator[String]
    Definition Classes
    Product