Type Members
-
type
Attrs
= Map[String, String]
-
type
Elem
= Char
-
type
Input
= Reader[Elem]
-
type
Nodes
= Seq[ParsedNode]
-
type
TopLevel
= (Nodes) ⇒ ParsedNode
Abstract Value Members
-
val
increment
: Int
-
Concrete 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]]
-
lazy val
allText
: Regex
-
lazy val
allwp
: Regex
-
def
asInstanceOf
[T0]
: T0
-
lazy val
atAttr
: Parser[(String, String)]
-
lazy val
attr
: Parser[(String, String)]
-
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]
-
lazy val
classAttr
: Parser[(String, String)]
-
def
clone
(): AnyRef
-
lazy val
commentNode
: Parser[TopLevel]
-
def
commit
[T]
(p: ⇒ Parser[T]): Parser[T]
-
def
copyNode
(n: ParsedNode, nodes: Nodes): ParsedNode
-
def
defaultLoad
: PartialFunction[Attrs, TopLevel]
-
def
descending
(d: Int): Parser[Any]
-
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]
-
lazy val
everything
: Regex
-
def
failure
(msg: String): Parser[Nothing]
-
def
finalize
(): Unit
-
def
flattenAttrList
(tups: List[(String, String)]): List[(String, String)]
-
def
fullParse
[A]
(contents: String)(implicit converter: (Nodes) ⇒ A): A
-
def
getClass
(): java.lang.Class[_]
-
def
guard
[T]
(p: ⇒ Parser[T]): Parser[T]
-
def
handleWhiteSpace
(source: CharSequence, offset: Int): Int
-
def
hashCode
(): Int
-
lazy val
idAttr
: Parser[(String, String)]
-
lazy val
ident
: Regex
-
lazy val
inlineAttrs
: Parser[List[(String, String)]]
-
def
inlineParams
: Parser[Map[String, String]]
-
def
isInstanceOf
[T0]
: Boolean
-
var
lastNoSuccess
: NoSuccess
-
implicit def
literal
(s: String): Parser[String]
-
def
lmxml
: Parser[Nodes]
-
def
load
: PartialFunction[Attrs, TopLevel]
-
def
log
[T]
(p: ⇒ Parser[T])(name: String): Parser[T]
-
def
mkList
[T]
: (~[T, List[T]]) ⇒ List[T]
-
lazy val
multiLine
: Parser[String]
-
def
ne
(arg0: AnyRef): Boolean
-
lazy val
node
: Parser[TopLevel]
-
def
nodesAt
(startingDepth: Int): Parser[Nodes]
-
def
not
[T]
(p: ⇒ Parser[T]): Parser[Unit]
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
def
opt
[T]
(p: ⇒ Parser[T]): Parser[Option[T]]
-
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
parseNodes
(contents: String): Seq[ParsedNode]
-
def
phrase
[T]
(p: Parser[T]): Parser[T]
-
def
positioned
[T <: Positional]
(p: ⇒ Parser[T]): Parser[T]
-
def
rebuild
(n: Nodes, link: LinkDefinition): Nodes
-
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]]
-
val
resources
: Parser[TopLevel]
-
def
safeParseNodes
(contents: String): Product with Serializable with Either[ParseResult[Any], Seq[ParsedNode]]
-
lazy val
separator
: Regex
-
def
skipWhitespace
: Boolean
-
def
someAttr
: Parser[(String, String)]
-
def
spaces
(n: Int): Regex
-
lazy val
strWrapper
: Parser[String]
-
lazy val
stringLit
: Parser[String]
-
def
success
[T]
(v: T): Parser[T]
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
lazy val
template
: Parser[String]
-
lazy val
templateDef
: Parser[LinkDefinition]
-
lazy val
templateNode
: Parser[TopLevel]
-
lazy val
textNode
: Parser[TopLevel]
-
def
toString
(): String
-
def
topLevel
: Parser[TopLevel]
-
lazy val
unescapedAttr
: Parser[Boolean]
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
-
val
whiteSpace
: Regex
Inherited from LmxmlParsers
Inherited from RegexParsers
Inherited from Parsers
Inherited from AnyRef
Inherited from Any