Packages

  • package root
    Definition Classes
    root
  • package parsley
    Definition Classes
    root
  • package errors

    This package contains various functionality relating to the generation and formatting of error messages.

    This package contains various functionality relating to the generation and formatting of error messages.

    In particular, it includes a collection of combinators for improving error messages within the parser, including labelling and providing additional information. It also contains combinators that can be used to valid data produced by a parser, to ensure it conforms to expected invariances, producing good quality error messages if this is not the case. Finally, this package contains ways of changing the formatting of error messages: this can either be changing how the default String-based errors are formatted, or by injectiing Parsley's errors into a custom error object.

    Definition Classes
    parsley
  • package tokenextractors

    This package contains implementations of token extractors that can be mixed into ErrorBuilder to decide how to extract unexpected tokens from the residual input left over from a parse error.

    This package contains implementations of token extractors that can be mixed into ErrorBuilder to decide how to extract unexpected tokens from the residual input left over from a parse error.

    These are common strategies, and something here is likely to be what is needed. They are all careful to handle unprintable characters and whitespace in a sensible way, and account for unicode codepoints that are wider than a single 16-bit character.

    Definition Classes
    errors
    Since

    4.0.0

  • LexToken
  • MatchParserDemand
  • SingleChar
  • TillNextWhitespace
p

parsley.errors

tokenextractors

package tokenextractors

This package contains implementations of token extractors that can be mixed into ErrorBuilder to decide how to extract unexpected tokens from the residual input left over from a parse error.

These are common strategies, and something here is likely to be what is needed. They are all careful to handle unprintable characters and whitespace in a sensible way, and account for unicode codepoints that are wider than a single 16-bit character.

Source
package.scala
Since

4.0.0

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. tokenextractors
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait LexToken extends AnyRef

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will try and parse the residual input to identify a valid lexical token to report.

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will try and parse the residual input to identify a valid lexical token to report.

    When parsing a grammar that as a dedicated lexical distinction, it is nice to be able to report problematic tokens relevant to that grammar as opposed to generic input lifted straight from the input stream. The easiest way of doing this would be having a pre-lexing pass and parsing based on tokens, but this is deliberately not how Parsley is designed. Instead, this extractor can try and parse the remaining input to try and identify a token on demand.

    If the lexicalError flag of the unexpectedToken method is not set, which would indicate a problem within a token reported by a classical lexer and not the parser, the extractor will try to parse each of the provided tokens in turn: whichever is the longest matched of these tokens will be reported as the problematic one (this can be changed by overriding selectToken). For best effect, these tokens should not consume whitespace (which would otherwise be included at the end of the token!): this means that, if using the Lexer class, the functionality in nonlexeme should be used. If one of the givens tokens cannot be parsed, the input until the next valid parsable token (or end of input) is returned as a Token.Raw.

    Currently, if lexicalError is true, this extractor will just return the next character as the problematic item (this may be changed by overriding the extractItem method).

    Since

    4.0.0

  2. trait MatchParserDemand extends AnyRef

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will make a token as wide as the amount of input the parser tried to consume when it failed.

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will make a token as wide as the amount of input the parser tried to consume when it failed.

    Since

    4.0.0

    Note

    In the case of unprintable characters or whitespace, this extractor will favour reporting a more meaningful name.

  3. trait SingleChar extends AnyRef

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will unconditionally report the first character in the remaining input as the problematic token.

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will unconditionally report the first character in the remaining input as the problematic token.

    Since

    4.0.0

    Note

    In the case of unprintable characters or whitespace, this extractor will favour reporting a more meaningful name.

  4. trait TillNextWhitespace extends AnyRef

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will construct a token that extends to the next available whitespace in the remaining input.

    This extractor mixin provides an implementation for ErrorBuilder.unexpectedToken when mixed into an error builder: it will construct a token that extends to the next available whitespace in the remaining input. It can be configured to constrict this token to the minimum of the next whitespace or whatever the parser demanded (see MatchParserDemand).

    Since

    4.0.0

    Note

    In the case of unprintable characters or whitespace, this extractor will favour reporting a more meaningful name.

Value Members

  1. object LexToken

    This object contains helper functions useful for interacting with LexToken.

    This object contains helper functions useful for interacting with LexToken.

    Since

    4.0.0

  2. object MatchParserDemand

    Contains the functionality of MatchParserDemand as a function.

    Contains the functionality of MatchParserDemand as a function.

    Since

    4.0.0

  3. object SingleChar

    Contains the functionality of SingleChar as a function.

    Contains the functionality of SingleChar as a function.

    Since

    4.0.0

  4. object TillNextWhitespace

    Contains the functionality of TillNextWhitespace as a function.

    Contains the functionality of TillNextWhitespace as a function.

    Since

    4.0.0

Inherited from AnyRef

Inherited from Any

Ungrouped