package text
This package contains the abstract parsers for parsing string and character literals.
- Source
- token-package.scala
- Since
4.0.0
Type Members
-
abstract
class
Character extends AnyRef
This class defines a uniform interface for defining parsers for character literals, independent of how whitespace should be handled after the literal.
This class defines a uniform interface for defining parsers for character literals, independent of how whitespace should be handled after the literal.
- Since
4.0.0
- Note
implementations of this class found within
Lexermay employ sharing and refine thedefs in this class intovalorlazy valwhen overriding.
-
abstract
class
String extends AnyRef
This class defines a uniform interface for defining parsers for string literals, independent of whether the string is raw, multi-line, or should consume whitespace after the literal.
This class defines a uniform interface for defining parsers for string literals, independent of whether the string is raw, multi-line, or should consume whitespace after the literal.
- Since
4.0.0
- Note
implementations of this class found within
Lexermay employ sharing and refine thedefs in this class intovalorlazy valwhen overriding.