Trait

org.fusesource.scalate.support

ScalaParseSupport

Related Doc: package support

Permalink

trait ScalaParseSupport extends RegexParsers

Source
ScalaParseSupport.scala
Version

$Revision : 1.1 $

Linear Supertypes
RegexParsers, Parsers, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScalaParseSupport
  2. RegexParsers
  3. Parsers
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Elem = Char

    Permalink
    Definition Classes
    RegexParsers → Parsers
  2. case class Error extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  3. case class Failure extends NoSuccess with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  4. type Input = Reader[Elem]

    Permalink
    Definition Classes
    Parsers
  5. sealed abstract class NoSuccess extends ParseResult[Nothing]

    Permalink
    Definition Classes
    Parsers
  6. trait OnceParser[+T] extends Parser[T]

    Permalink
    Definition Classes
    Parsers
  7. sealed abstract class ParseResult[+T] extends AnyRef

    Permalink
    Definition Classes
    Parsers
  8. abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]

    Permalink
    Definition Classes
    Parsers
  9. case class Success[+T] extends ParseResult[T] with Product with Serializable

    Permalink
    Definition Classes
    Parsers
  10. case class ~[+a, +b] extends Product with Serializable

    Permalink
    Definition Classes
    Parsers

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to any2stringadd[ScalaParseSupport] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ScalaParseSupport, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to ArrowAssoc[ScalaParseSupport] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. val EofCh: Char

    Permalink
  7. object NoSuccess

    Permalink
    Definition Classes
    Parsers
  8. def OnceParser[T](f: (Input) ⇒ ParseResult[T]): Parser[T] with OnceParser[T]

    Permalink
    Definition Classes
    Parsers
  9. def Parser[T](f: (Input) ⇒ ParseResult[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  10. def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    ScalaParseSupport → Parsers
  11. def accept[ES](es: ES)(implicit f: (ES) ⇒ List[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  12. implicit def accept(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  13. def acceptIf(p: (Elem) ⇒ Boolean)(err: (Elem) ⇒ String): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  14. def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]

    Permalink
    Definition Classes
    Parsers
  15. def acceptSeq[ES](es: ES)(implicit f: (ES) ⇒ Iterable[Elem]): Parser[List[Elem]]

    Permalink
    Definition Classes
    Parsers
  16. lazy val anyChar: Parser[Char]

    Permalink
  17. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  18. def chainl1[T, U](first: ⇒ Parser[T], p: ⇒ Parser[U], q: ⇒ Parser[(T, U) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  19. def chainl1[T](p: ⇒ Parser[T], q: ⇒ Parser[(T, T) ⇒ T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  20. def chainr1[T, U](p: ⇒ Parser[T], q: ⇒ Parser[(T, U) ⇒ U], combine: (T, U) ⇒ U, first: U): Parser[U]

    Permalink
    Definition Classes
    Parsers
  21. lazy val charEscapeSeq: Parser[Char]

    Permalink
  22. lazy val characterLiteral: Parser[String]

    Permalink
  23. def chrExcept(cs: Char*): Parser[Char]

    Permalink
  24. def chrOf(cs: String): Parser[Char]

    Permalink
  25. def chrOf(cs: Char*): Parser[Char]

    Permalink
  26. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. def commit[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  28. lazy val doubleQuotedChars: Parser[String]

    Permalink
  29. def dquoted[T](p: Parser[T]): Parser[T]

    Permalink
  30. def elem(e: Elem): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  31. def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]

    Permalink
    Definition Classes
    Parsers
  32. def ensuring(cond: (ScalaParseSupport) ⇒ Boolean, msg: ⇒ Any): ScalaParseSupport

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to Ensuring[ScalaParseSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. def ensuring(cond: (ScalaParseSupport) ⇒ Boolean): ScalaParseSupport

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to Ensuring[ScalaParseSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  34. def ensuring(cond: Boolean, msg: ⇒ Any): ScalaParseSupport

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to Ensuring[ScalaParseSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  35. def ensuring(cond: Boolean): ScalaParseSupport

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to Ensuring[ScalaParseSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  36. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  37. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  38. def err(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  39. def failure(msg: String): Parser[Nothing]

    Permalink
    Definition Classes
    Parsers
  40. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  41. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to StringFormat[ScalaParseSupport] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  42. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  43. def guard[T](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    Parsers
  44. def guarded[T, U](p1: Parser[T], p2: Parser[U]): Parser[U]

    Permalink

    Once p1 is matched, disable backtracking.

    Once p1 is matched, disable backtracking. Does not consume p1 and yields the result of p2

  45. def handleWhiteSpace(source: CharSequence, offset: Int): Int

    Permalink
    Attributes
    protected
    Definition Classes
    RegexParsers
  46. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  47. lazy val hexDigit: Parser[Char]

    Permalink
  48. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  49. implicit def literal(s: String): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  50. def log[T](p: ⇒ Parser[T])(name: String): Parser[T]

    Permalink
    Definition Classes
    Parsers
  51. def mkList[T]: (~[T, List[T]]) ⇒ List[T]

    Permalink
    Definition Classes
    Parsers
  52. lazy val multiLineChars: Parser[String]

    Permalink
  53. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  54. def not[T](p: ⇒ Parser[T]): Parser[Unit]

    Permalink
    Definition Classes
    Parsers
  55. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  56. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  57. lazy val octalDigit: Parser[Char]

    Permalink
  58. lazy val octalEscapeSeq: Parser[Char]

    Permalink
  59. def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]

    Permalink
    Definition Classes
    Parsers
  60. def parse[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  61. def parse[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  62. def parse[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  63. def parseAll[T](p: Parser[T], in: CharSequence): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  64. def parseAll[T](p: Parser[T], in: Reader): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  65. def parseAll[T](p: Parser[T], in: Reader[Char]): ParseResult[T]

    Permalink
    Definition Classes
    RegexParsers
  66. def phrase[T](p: Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  67. def positioned[T <: Positional](p: ⇒ Parser[T]): Parser[T]

    Permalink
    Definition Classes
    RegexParsers → Parsers
  68. def prefixed[T, U](p1: Parser[T], p2: Parser[U]): Parser[U]

    Permalink

    Once p1 is matched, disable backtracking.

    Once p1 is matched, disable backtracking. Consumes p1 and yields the result of p2

  69. implicit def regex(r: Regex): Parser[String]

    Permalink
    Definition Classes
    RegexParsers
  70. def rep[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  71. def rep1[T](first: ⇒ Parser[T], p0: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
    Annotations
    @migration
    Migration

    (Changed in version 2.9.0) The p0 call-by-name arguments is evaluated at most once per constructed Parser object, instead of on every need that arises during parsing.

  72. def rep1[T](p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  73. def rep1sep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  74. def repN[T](num: Int, p: ⇒ Parser[T]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  75. def repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]

    Permalink
    Definition Classes
    Parsers
  76. val scalaType: Regex

    Permalink
  77. val scalaTypeChar: String

    Permalink
  78. def skipWhitespace: Boolean

    Permalink
    Definition Classes
    RegexParsers
  79. def someUpto[T](p: Parser[T]): Parser[Text]

    Permalink
  80. def squoted[T](p: Parser[T]): Parser[T]

    Permalink
  81. lazy val stringLiteral: Parser[String]

    Permalink
  82. def success[T](v: T): Parser[T]

    Permalink
    Definition Classes
    Parsers
  83. def surround[T](delim: Parser[Any], p: Parser[T]): Parser[T]

    Permalink
  84. def surround[T](c: Char, p: Parser[T]): Parser[T]

    Permalink
  85. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  86. def takeUntil(cond: Parser[Any], p: Parser[Char]): Parser[String]

    Permalink
  87. def takeUntil(cond: Parser[Any]): Parser[String]

    Permalink
  88. def takeWhile(p: Parser[Char]): Parser[String]

    Permalink
  89. def text(p1: Parser[String]): Parser[Text]

    Permalink
  90. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  91. def tquoted[T](p: Parser[T]): Parser[T]

    Permalink
  92. lazy val tripleQuote: Parser[Unit]

    Permalink
  93. lazy val uniEscapeSeq: Parser[Char]

    Permalink
  94. def upto[T](p: Parser[T]): Parser[Text]

    Permalink
  95. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  96. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  97. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  98. val whiteSpace: Regex

    Permalink
    Attributes
    protected
    Definition Classes
    RegexParsers
  99. def wrapped[T, U](prefix: Parser[T], postfix: Parser[U]): Parser[Text]

    Permalink
  100. def [B](y: B): (ScalaParseSupport, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ScalaParseSupport to ArrowAssoc[ScalaParseSupport] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from RegexParsers

Inherited from Parsers

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ScalaParseSupport to any2stringadd[ScalaParseSupport]

Inherited by implicit conversion StringFormat from ScalaParseSupport to StringFormat[ScalaParseSupport]

Inherited by implicit conversion Ensuring from ScalaParseSupport to Ensuring[ScalaParseSupport]

Inherited by implicit conversion ArrowAssoc from ScalaParseSupport to ArrowAssoc[ScalaParseSupport]

Ungrouped