Instance Constructors
-
new
MustacheParser
()
Type Members
-
type
Elem
= Char
-
type
Input
= Reader[Elem]
Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
def
OnceParser
[T]
(f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]
-
def
Parser
[T]
(f: (Input) ⇒ ParseResult[T]): Parser[T]
-
def
accept
[U]
(expected: String, f: PartialFunction[Elem, U]): Parser[U]
-
def
accept
[ES]
(es: ES)(implicit arg0: (ES) ⇒ List[Elem]): Parser[List[Elem]]
-
implicit def
accept
(e: Elem): Parser[Elem]
-
def
acceptIf
(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]
-
def
acceptMatch
[U]
(expected: String, f: PartialFunction[Elem, U]): Parser[U]
-
def
acceptSeq
[ES]
(es: ES)(implicit arg0: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]
-
def
asInstanceOf
[T0]
: T0
-
def
chainl1
[T, U]
(first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]
-
def
chainl1
[T]
(p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]
-
def
chainr1
[T, U]
(p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]
-
def
clone
(): AnyRef
-
def
close
: Parser[String]
-
def
comment
: Parser[Comment]
-
def
commit
[T]
(p: ⇒ Parser[T]): Parser[T]
-
def
elem
(e: Elem): Parser[Elem]
-
def
elem
(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
err
(msg: String): Parser[Nothing]
-
def
error
(message: String, pos: Position): Nothing
-
def
eval
[T]
(p: ⇒ Parser[T]): Parser[T]
-
def
expression
[T <: Statement]
(p: Parser[T]): Parser[T]
-
def
failure
(msg: String): Parser[Nothing]
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
guard
[T]
(p: ⇒ Parser[T]): Parser[T]
-
def
handleWhiteSpace
(source: CharSequence, offset: Int): Int
-
def
hashCode
(): Int
-
-
def
isInstanceOf
[T0]
: Boolean
-
def
isWhitespace
(statement: Statement): Boolean
-
var
lastNoSuccess
: NoSuccess
-
implicit def
literal
(s: String): Parser[String]
-
def
log
[T]
(p: ⇒ Parser[T])(name: String): Parser[T]
-
def
mkList
[T]
: (~[T, List[T]]) ⇒ List[T]
-
def
mustache
: Parser[List[Statement]]
-
def
ne
(arg0: AnyRef): Boolean
-
def
nested
(prefix: String): Parser[(Text, List[Statement])]
-
def
not
[T]
(p: ⇒ Parser[T]): Parser[Unit]
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
open
: Parser[String]
-
def
operation
(prefix: String): Parser[Text]
-
def
opt
[T]
(p: ⇒ Parser[T]): Parser[Option[T]]
-
def
option
: Parser[(String, String)]
-
def
parse
(in: String): List[Statement]
-
def
parse
[T]
(p: Parser[T], in: Reader): ParseResult[T]
-
def
parse
[T]
(p: Parser[T], in: CharSequence): ParseResult[T]
-
def
parse
[T]
(p: Parser[T], in: Reader[Char]): ParseResult[T]
-
def
parseAll
[T]
(p: Parser[T], in: CharSequence): ParseResult[T]
-
def
parseAll
[T]
(p: Parser[T], in: Reader): ParseResult[T]
-
def
parseAll
[T]
(p: Parser[T], in: Reader[Char]): ParseResult[T]
-
def
partial
: Parser[Partial]
-
def
phrase
[T]
(p: Parser[T]): Parser[T]
-
def
positioned
[T <: Positional]
(p: ⇒ Parser[T]): Parser[T]
-
def
pragma
: Parser[Product with Statement with Serializable]
-
implicit def
regex
(r: Regex): Parser[String]
-
def
rep
[T]
(p: ⇒ Parser[T]): Parser[List[T]]
-
def
rep1
[T]
(first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]
-
def
rep1
[T]
(p: ⇒ Parser[T]): Parser[List[T]]
-
def
rep1sep
[T]
(p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
-
def
repN
[T]
(num: Int, p: ⇒ Parser[T]): Parser[List[T]]
-
def
repsep
[T]
(p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
-
def
section
: Parser[Section]
-
def
setDelimiter
: Parser[SetDelimiter]
-
def
skipWhitespace
: Boolean
-
def
someText
: Parser[Text]
-
def
statement
: Parser[Product with Statement with Serializable]
-
def
success
[T]
(v: T): Parser[T]
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
text
(p1: Parser[String]): Parser[Text]
-
def
toString
(): String
-
def
trim
[T]
(p: Parser[T]): Parser[T]
-
def
trimmed
: Parser[Text]
-
def
unescapeVariable
: Parser[Variable]
-
def
unescapeVariableAmp
: Parser[Variable]
-
def
unescapeVariableMustash
: Parser[Variable]
-
def
upto
[T]
(p: Parser[T]): Parser[Text]
-
def
variable
: Parser[Variable]
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
-
val
whiteSpace
: Regex
Inherited from RegexParsers
Inherited from Parsers
Inherited from AnyRef
Inherited from Any
Parser for the Mustache template language
$Revision : 1.1 $