trait Parsers extends AnyRef
- Alphabetic
- By Inheritance
- Parsers
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
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
-
lazy val
BackslashChar: Char
Backslash character.
-
lazy val
Bool: Parser[Boolean]
Parses the lower-case values
true
andfalse
into their corresponding Boolean values. -
lazy val
CapitalizedID: Parser[String]
Parses a non-symbolic Scala-like identifier.
Parses a non-symbolic Scala-like identifier. The identifier must start with Upper and contain zero or more ScalaIDChars after that.
-
lazy val
DQuoteChar: Char
Double quote character.
-
lazy val
DQuoteClass: Parser[Char]
Matches a single double quote.
-
lazy val
Digit: Parser[Char]
Parses any single digit and provides that digit as a Char as the result.
-
lazy val
DigitSet: Set[String]
Set that contains each digit in a String representation.
-
lazy val
EOF: Parser[Unit]
Matches the end of input, providing no useful result on success.
-
lazy val
EscapeSequence: Parser[Char]
Parses a single escape sequence into the represented Char.
Parses a single escape sequence into the represented Char. Escapes start with a backslash and are followed by
u
for a UnicodeEscape or byb
,t
,n
,f
,r
,"
,'
,\
for standard escapes. -
lazy val
HexDigit: Parser[Char]
Parses a single hexadecimal digit (0-9, a-f, A-F).
-
lazy val
HexDigitSet: Set[Char]
Set containing Chars for hexadecimal digits 0-9 and A-F (but not a-f).
-
lazy val
ID: Parser[String]
Parses an identifier String, which must start with IDStart and contain zero or more IDChars after that.
-
lazy val
IDChar: Parser[Char]
Parses an identifier Char other than the first character.
Parses an identifier Char other than the first character. This includes letters, digits, dash
-
, and underscore_
. -
def
IDStart: Parser[Char]
Parses the first Char in an sbt identifier, which must be a Letter.
-
lazy val
IntBasic: Parser[Int]
Parses a signed integer.
-
lazy val
Letter: Parser[Char]
Parses a single letter, according to Char.isLetter, into a Char.
-
lazy val
Lower: Parser[Char]
Parses a single letter, according to Char.isLower, into a Char.
-
lazy val
NatBasic: Parser[Int]
Parses an unsigned integer.
-
lazy val
NotDQuoteBackslashClass: Parser[Char]
Matches any character except a double quote or backslash.
-
lazy val
NotDQuoteSpaceClass: Parser[Char]
Matches any character except a double quote or whitespace.
-
lazy val
NotQuoted: Parser[String]
Parses an unquoted, non-empty String value that cannot start with a double quote and cannot contain whitespace.
-
lazy val
NotQuotedThenQuoted: Parser[String]
Parses a non-empty String value that cannot start with a double quote, but includes double quotes.
-
lazy val
NotSpace: Parser[String]
Matches a non-empty String consisting of non-whitespace characters.
-
lazy val
NotSpaceClass: Parser[Char]
Matches a single character that is not a whitespace character.
-
lazy val
Op: Parser[String]
Parses a non-empty operator String, which consists only of characters allowed by OpChar.
-
lazy val
OpChar: Parser[Char]
Parses a single operator Char, as allowed by isOpChar.
-
lazy val
OpOrID: Parser[String]
Parses either an operator String defined by Op or a non-symbolic identifier defined by ID.
-
lazy val
OptNotSpace: Parser[String]
Matches a possibly empty String consisting of non-whitespace characters.
-
lazy val
OptSpace: Parser[Seq[Char]]
Matches a possibly empty String consisting of whitespace characters.
Matches a possibly empty String consisting of whitespace characters. The suggested tab completion is a single, constant space character.
-
lazy val
Port: Parser[Int]
Parses a port number.
Parses a port number. Currently, this accepts any integer and presents a tab completion suggestion of
<port>
. -
lazy val
ScalaID: Parser[String]
Parses a non-symbolic Scala-like identifier.
Parses a non-symbolic Scala-like identifier. The identifier must start with IDStart and contain zero or more ScalaIDChars after that.
-
lazy val
ScalaIDChar: Parser[Char]
Parses a single, non-symbolic Scala identifier Char.
Parses a single, non-symbolic Scala identifier Char. Valid characters are letters, digits, and the underscore character
_
. -
lazy val
Size: Parser[Long]
Parses a size unit string.
Parses a size unit string. For example,
128K
parsers to128L * 1024
, and1.25g
parses to1024L * 1024 * 1024 * 5 / 4
. -
lazy val
Space: Parser[Seq[Char]]
Matches a non-empty String consisting of whitespace characters.
Matches a non-empty String consisting of whitespace characters. The suggested tab completion is a single, constant space character.
-
lazy val
SpaceClass: Parser[Char]
Matches a single whitespace character, as determined by Char.isWhitespace.
-
lazy val
StringBasic: Parser[String]
Parses a potentially quoted String value.
Parses a potentially quoted String value. The value may be verbatim quoted (StringVerbatim), quoted with interpreted escapes (StringEscapable), or unquoted (NotQuoted).
-
lazy val
StringEscapable: Parser[String]
Parses a string value, interpreting escapes and discarding the surrounding quotes in the result.
Parses a string value, interpreting escapes and discarding the surrounding quotes in the result. See EscapeSequence for supported escapes.
-
lazy val
StringVerbatim: Parser[String]
Parses a verbatim quoted String value, discarding the quotes in the result.
Parses a verbatim quoted String value, discarding the quotes in the result. This kind of quoted text starts with triple quotes
"""
and ends at the next triple quotes and may contain any character in between. -
lazy val
URIChar: Parser[Char]
Matches a single character that is valid somewhere in a URI.
-
lazy val
URIClass: Parser[String]
Parses a non-empty String that contains only valid URI characters, as defined by URIChar.
-
lazy val
UnicodeEscape: Parser[Char]
Parses a single unicode escape sequence into the represented Char.
Parses a single unicode escape sequence into the represented Char. A unicode escape begins with a backslash, followed by a
u
and 4 hexadecimal digits representing the unicode value. -
lazy val
Upper: Parser[Char]
Parses a single letter, according to Char.isUpper, into a Char.
-
def
Uri(ex: Set[URI]): Parser[URI]
Parses a URI that is valid according to the single argument java.net.URI constructor, using
ex
as tab completion examples. -
lazy val
VerbatimDQuotes: String
Triple-quotes, as used for verbatim quoting.
-
def
alphanum(c: Char): Boolean
Returns true if
c
is an ASCII letter or digit. -
lazy val
any: Parser[Char]
Parses any single character and provides that character as the result.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
lazy val
basicUri: Parser[URI]
Parses a URI that is valid according to the single argument java.net.URI constructor.
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
fileParser(base: File): Parser[File]
- base
the directory used for completion proposals (when the user presses the TAB key). Only paths under this directory will be proposed.
- returns
the file that was parsed from the input string. The returned path may or may not exist.
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
flag[T](p: Parser[T]): Parser[Boolean]
Applies
p
and usestrue
as the result if it succeeds and turns failure into a result offalse
. -
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
identifier(start: Parser[Char], rep: Parser[Char]): Parser[String]
Parses a String that starts with
start
and is followed by zero or more characters parsed byrep
. - def isDelimiter(c: Char): Boolean
-
def
isIDChar(c: Char): Boolean
Returns true if
c
is a dash-
, a letter, digit, or an underscore_
. -
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isOpChar(c: Char): Boolean
Returns true if
c
an operator character. - def isOpType(cat: Int): Boolean
-
def
isScalaIDChar(c: Char): Boolean
Returns true if
c
is a letter, digit, or an underscore_
. -
def
mapOrFail[S, T](p: Parser[S])(f: (S) ⇒ T): Parser[T]
Applies
f
to the result ofp
, transforming any exception when evaluatingf
into a parse failure with the exceptiontoString
as the message. -
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 opOrIDSpaced(s: String): Parser[Char]
-
def
rep1sep[T](rep: Parser[T], sep: Parser[_]): Parser[Seq[T]]
Applies
rep
one or more times, separated bysep
.Applies
rep
one or more times, separated bysep
. The result is the non-empty sequence of results from the multiplerep
applications. Thesep
results are discarded. -
def
repeatDep[A](p: (Seq[A]) ⇒ Parser[A], sep: Parser[Any]): Parser[Seq[A]]
Defines a sequence parser where the parser used for each part depends on the previously parsed values.
Defines a sequence parser where the parser used for each part depends on the previously parsed values.
p
is applied to the (possibly empty) sequence of already parsed values to obtain the next parser to use. The parsers obtained in this way are separated bysep
, whose result is discarded and only the sequence of values from the parsers returned byp
is used for the result. -
def
repsep[T](rep: Parser[T], sep: Parser[_]): Parser[Seq[T]]
Applies
rep
zero or more times, separated bysep
.Applies
rep
zero or more times, separated bysep
. The result is the (possibly empty) sequence of results from the multiplerep
applications. Thesep
results are discarded. -
def
some[T](p: Parser[T]): Parser[Option[T]]
Wraps the result of
p
inSome
. -
def
spaceDelimited(display: String): Parser[Seq[String]]
Parses a space-delimited, possibly empty sequence of arguments.
Parses a space-delimited, possibly empty sequence of arguments. The arguments may use quotes and escapes according to StringBasic.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
trimmed(p: Parser[String]): Parser[String]
Applies String.trim to the result of
p
. -
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()