object space
This object is concerned with special treatment of whitespace.
For the vast majority of cases, the functionality within this
object shouldn't be needed, as whitespace is consistently handled
by lexeme and fully. However, for grammars where whitespace
is significant (like indentation-sensitive languages), this object
provides some more fine-grained control over how whitespace is
consumed by the parsers within lexeme.
- Source
- Lexer.scala
- Since
4.0.0
- Alphabetic
- By Inheritance
- space
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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 alter[A](newSpace: CharPredicate)(within: => Parsley[A]): Parsley[A]
This combinator changes how whitespace is parsed by lexemes for the duration of a given parser.
This combinator changes how whitespace is parsed by lexemes for the duration of a given parser.
So long as
spaceDesc.whiteSpaceIsContextDependentis set totrue, this combinator will be able to locally change the definition of whitespace during the given parser.- newSpace
the new implementation of whitespace to be used during the execution of
within.- within
the parser that should be parsed using the updated whitespace.
In indentation sensitive languages, the indentation sensitivity is often ignored within parentheses or braces. In these cases
lexeme.enclosing.parens(space.alter(withNewline)(p))would allow unrestricted newlines within parentheses.- Since
4.0.0
- Note
the whitespace will not be restored to its original implementation if the given parser fails having consumed input.
Example: - final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- 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()
- def init: Parsley[Unit]
This parser initialises the whitespace used by the lexer when
spaceDesc.whiteSpaceIsContextDependentis set totrue.This parser initialises the whitespace used by the lexer when
spaceDesc.whiteSpaceIsContextDependentis set totrue.The whitespace is set to the implementation given by the lexical description. This parser must be used, by
fullyor otherwise, as the first thing the global parser does or anUnfilledRegisterExceptionwill occur. - final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- lazy val skipComments: Parsley[Unit]
This parser skips zero or more comments.
This parser skips zero or more comments.
The implementation of this combinator does not vary with
whitespaceIsContextDependent. It will use thehidecombinator as to not appear as a valid alternative in an error message: adding a comment is often legal, but not a useful solution for how to make the input syntactically valid.- Since
4.0.0
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- val whiteSpace: Parsley[Unit]
This parser skips zero or more (insignificant) whitespace characters as well as comments.
This parser skips zero or more (insignificant) whitespace characters as well as comments.
The implementation of this parser depends on whether
whitespaceIsContextDependentis set: when it is, this parser may change based on the use of thealtercombinator. This parser will always use thehidecombinator as to not appear as a valid alternative in an error message: it's likely always the case whitespace can be added at any given time, but that doesn't make it a useful suggestion unless it is significant.- Since
4.0.0