object combinator
This module contains combinators that can be used to directly influence error messages of parsers.
Error messages are, by default, not particularly descriptive. However, the combinators in this module can be used to improve the generation of error messages by providing labels for expected items, explanations for why things went wrong, custom error messages, custom unexpected error messages, as well as correcting the offsets that error messages actually occurred at.
- Source
- combinator.scala
- Since
3.0.0
- Grouped
- Alphabetic
- By Inheritance
- combinator
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- implicit final class ErrorMethods[P, +A] extends AnyRef
This class exposes helpful combinators that are specialised for generating more helpful errors messages.
This class exposes helpful combinators that are specialised for generating more helpful errors messages.
This extension class operates on values that are convertible to parsers. It enables the use of error combinators, which can be used for data validation, error annotation, or immediate failing.
- P
the type of base value that this class is used on (the conversion to
Parsley
) is summoned automatically.
- Version
3.0.0
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def amend[A](p: Parsley[A]): Parsley[A]
This combinator adjusts any error messages generated by the given parser so that they occur at the position recorded on entry to this combinator (effectively as if no input were consumed).
This combinator adjusts any error messages generated by the given parser so that they occur at the position recorded on entry to this combinator (effectively as if no input were consumed).
This is useful if validation work is done on the output of a parser that may render it invalid, but the error should point to the beginning of the structure. This combinators effect can be cancelled with
entrench
.- p
a parser whose error messages should be adjusted.
- returns
a parser that parses
p
but ensures any errors generated occur as if no input were consumed.
- Since
3.1.0
- def amendThenDislodge[A](by: Int)(p: Parsley[A]): Parsley[A]
- def amendThenDislodge[A](p: Parsley[A]): Parsley[A]
This combinator first tries to amend the position of any error generated by the given parser, and if the error was entrenched will dislodge it instead.
This combinator first tries to amend the position of any error generated by the given parser, and if the error was entrenched will dislodge it instead.
- p
a parser whose error messages should be amended unless its been entrenched.
- returns
a parser that parses
p
but ensures any errors generated occur as if no input were consumed.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def dislodge[A](by: Int)(p: Parsley[A]): Parsley[A]
- def dislodge[A](p: Parsley[A]): Parsley[A]
This combinator undoes the action of the
entrench
combinator on the given parser.This combinator undoes the action of the
entrench
combinator on the given parser.Entrenchment is important for preventing the incorrect amendment of certain parts of sub-errors for a parser, but it may be then undesireable to block further amendments from elsewhere in the parser. This combinator can be used to cancel and entrenchment after the critical section has passed.
- p
a parser that should no longer be under the affect of an
entrench
combinator- returns
a parser that parses
p
and allows its error messages to be amended.
- Since
4.2.0
- def entrench[A](p: Parsley[A]): Parsley[A]
This combinator prevents the action of any enclosing
amend
on the errors generated by the given parser.This combinator prevents the action of any enclosing
amend
on the errors generated by the given parser.Sometimes, the error adjustments performed by
amend
should only affect errors generated within a certain part of a parser and not the whole thing; in this case,entrench
can be used to protect sub-parsers from having their errors adjusted, providing a much more fine-grained scope for error adjustment.- p
a parser whose error messages should not be adjusted by any surrounding
amend
.- returns
a parser that parses
p
but ensures any error messages are generated normally.
In this example, the
ident
parser should not allow keywords, and these error messages should be generated from the start of the identifier, not the end. However any errors generated within the identifier itself should remain at their regular offsets.val ident = amend { entrench(stringOfSome(letter)).filterOut { case v if keywords.contains(v) => s"keyword $v cannot be an identifier" } }
- Since
3.1.0
Example: - final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def fail(caretWidth: Int, msg0: String, msgs: String*): Parsley[Nothing]
This combinator consumes no input and fails immediately with the given error messages.
This combinator consumes no input and fails immediately with the given error messages.
Produces a specialised error message where all the lines of the error are the given
msgs
in order of appearance.- caretWidth
the size of the caret for this error: should ideally match the width of the cause of the error.
- msg0
the first message in the error message.
- msgs
the remaining messages that will make up the error message.
- returns
a parser that fails producing an error message consisting of all the given messages.
val failing = fail("hello,", "this is an error message", "broken across multiple lines")
- Since
4.0.0
Example: - def fail(msg0: String, msgs: String*): Parsley[Nothing]
This combinator consumes no input and fails immediately with the given error messages.
This combinator consumes no input and fails immediately with the given error messages.
Produces a specialised error message where all the lines of the error are the given
msgs
in order of appearance.- msg0
the first message in the error message.
- msgs
the remaining messages that will make up the error message.
- returns
a parser that fails producing an error message consisting of all the given messages.
val failing = fail("hello,", "this is an error message", "broken across multiple lines")
- Since
3.0.0
Example: - def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def markAsToken[A](p: Parsley[A]): Parsley[A]
This combinator marks any errors within the given parser as being lexical errors.
This combinator marks any errors within the given parser as being lexical errors.
When an error is marked as a lexical error, it sets a flag within the error that is passed to
ErrorBuilder.unexpectedToken
: this should be used to preventLexer
-based token extraction from being performed on an error, since lexing errors cannot be the result of unexpected tokens.- p
the parser that serves as a token.
- returns
a parser that parses
p
but ensures any error messages are marked as lexical errors.
- Since
4.0.0
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def partialAmend[A](p: Parsley[A]): Parsley[A]
- def partialAmendThenDislodge[A](by: Int)(p: Parsley[A]): Parsley[A]
- def partialAmendThenDislodge[A](p: Parsley[A]): Parsley[A]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unexpected(caretWidth: Int, item: String): Parsley[Nothing]
This combinator consumes no input and fails immediately, setting the unexpected component to the given item.
This combinator consumes no input and fails immediately, setting the unexpected component to the given item.
Produces a trivial error message where the unexpected component of the error is replaced with the given item
item
.- caretWidth
the size of the caret for this error: should ideally match the width of the cause of the error (the unexpected item).
- item
the unexpected message for the error generated.
- returns
a parser that fails producing an error with
item
as the unexpected token.
- Since
4.0.0
- def unexpected(item: String): Parsley[Nothing]
This combinator consumes no input and fails immediately, setting the unexpected component to the given item.
This combinator consumes no input and fails immediately, setting the unexpected component to the given item.
Produces a trivial error message where the unexpected component of the error is replaced with the given item
item
.- item
the unexpected message for the error generated.
- returns
a parser that fails producing an error with
item
as the unexpected token.
- Since
3.0.0
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
Failure Combinators
These combinator immediately fail the parser, with a more bespoke message.
Error Extension Combinators
These are implicit classes that, when in scope, enable additional combinators on parsers that interact with the error system in some way.
Error Adjustment Combinators
These combinators can affect at what position an error is caused at. They are
opposites: where amend
will ensure an error message is said to have generated
at the position on entry to the combinator, entrench
will resist these changes.
This is the documentation for Parsley.
Package structure
The parsley package contains the
Parsley
class, as well as theResult
,Success
, andFailure
types. In addition to these, it also contains the following packages and "modules" (a module is defined as being an object which mocks a package):parsley.Parsley
contains the bulk of the core "function-style" combinators.parsley.combinator
contains many helpful combinators that simplify some common parser patterns.parsley.character
contains the combinators needed to read characters and strings, as well as combinators to match specific sub-sets of characters.parsley.debug
contains debugging combinators, helpful for identifying faults in parsers.parsley.extension
contains syntactic sugar combinators exposed as implicit classes.parsley.io
contains extension methods to run parsers with input sourced from IO sources.parsley.expr
contains the following sub modules:parsley.expr.chain
contains combinators used in expression parsingparsley.expr.precedence
is a builder for expression parsers built on a precedence table.parsley.expr.infix
contains combinators used in expression parsing, but with more permissive types than their equivalents inchain
.parsley.expr.mixed
contains combinators that can be used for expression parsing, but where different fixities may be mixed on the same level: this is rare in practice.parsley.implicits
contains several implicits to add syntactic sugar to the combinators. These are sub-categorised into the following sub modules:parsley.implicits.character
contains implicits to allow you to use character and string literals as parsers.parsley.implicits.combinator
contains implicits related to combinators, such as the ability to make any parser into aParsley[Unit]
automatically.parsley.implicits.lift
enables postfix application of the lift combinator onto a function (or value).parsley.implicits.zipped
enables boths a reversed form of lift where the function appears on the right and is applied on a tuple (useful when type inference has failed) as well as a.zipped
method for building tuples out of several combinators.parsley.errors
contains modules to deal with error messages, their refinement and generation.parsley.errors.combinator
provides combinators that can be used to either produce more detailed errors as well as refine existing errors.parsley.errors.tokenextractors
provides mixins for common token extraction strategies during error message generation: these can be used to avoid implementingunexpectedToken
in theErrorBuilder
.parsley.lift
contains functions which lift functions that work on regular types to those which now combine the results of parsers returning those same types. these are ubiquitous.parsley.ap
contains functions which allow for the application of a parser returning a function to several parsers returning each of the argument types.parsley.registers
contains combinators that interact with the context-sensitive functionality in the form of registers.parsley.token
contains theLexer
class that provides a host of helpful lexing combinators when provided with the description of a language.parsley.position
contains parsers for extracting position information.parsley.genericbridges
contains some basic implementations of the Parser Bridge pattern (see Design Patterns for Parser Combinators in Scala, or the parsley wiki): these can be used before more specialised generic bridge traits can be constructed.