Packages

trait Parser extends AnyRef

The main Parser trait for scala parboiled parsers. Defines the basic rule building methods as well as the caching and proxying logic.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def anyOf(chars: Characters): Rule0

    Creates a rule that matches any single character in the given { @link org.parboiled.support.Characters } instance.

  5. def anyOf(chars: Array[Char]): Rule0

    Creates a rule that matches any single character in the given character array.

    Creates a rule that matches any single character in the given character array. If the array is empty the rule is equivalent to the NOTHING rule.

  6. def anyOf(s: String): Rule0

    Creates a rule that matches any single character in the given string.

    Creates a rule that matches any single character in the given string. If the string is empty the rule is equivalent to the NOTHING rule.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def buildParseTree: Boolean

    Indicates whether parboiled will create a parse tree during a parsing run of this parser.

    Indicates whether parboiled will create a parse tree during a parsing run of this parser. Override and return true (you can also do this with a "override val buildParseTree = true") to enable parse tree building.

  9. def ch(c: Char): CharRule

    Creates a rule that matches the given character.

  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  11. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. def ignoreCase(chars: Array[Char]): Rule0

    Creates a rule that matches the given character array case-independently.

    Creates a rule that matches the given character array case-independently. If the array is empty the rule is equivalent to the EMPTY rule.

  16. def ignoreCase(s: String): Rule0

    Creates a rule that matches the given string case-independently.

  17. def ignoreCase(c: Char): Rule0

    Creates a rule that matches the given character independently of its case.

  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def nTimes[A, B](times: Int, sub: Rule2[A, B], separator: Rule0): Rule1[List[(A, B)]]

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule.

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule. If the given number is zero the result is equivalent to the EMPTY match.

  20. def nTimes[A, B](times: Int, sub: Rule2[A, B]): Rule1[List[(A, B)]]

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule.

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule. If the given number is zero the result is equivalent to the EMPTY match.

  21. def nTimes[A](times: Int, sub: Rule1[A], separator: Rule0): Rule1[List[A]]

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule.

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule. If the given number is zero the result is equivalent to the EMPTY match.

  22. def nTimes[A](times: Int, sub: Rule1[A]): Rule1[List[A]]

    Matches the given sub rule a specified number of times.

    Matches the given sub rule a specified number of times. If the given number is zero the result is equivalent to the EMPTY match.

  23. def nTimes[A, B <: A](times: Int, sub: ReductionRule1[A, B], separator: Rule0): ReductionRule1[A, B]

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule.

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule. If the given number is zero the result is equivalent to the EMPTY match.

  24. def nTimes[A, B <: A](times: Int, sub: ReductionRule1[A, B]): ReductionRule1[A, B]

    Matches the given sub rule a specified number of times.

    Matches the given sub rule a specified number of times. If the given number is zero the result is equivalent to the EMPTY match.

  25. def nTimes(times: Int, sub: Rule0, separator: Rule0): Rule0

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule.

    Matches the given sub rule a specified number of times, whereby two rule matches have to be separated by a match of the given separator rule. If the given number is zero the result is equivalent to the EMPTY match.

  26. def nTimes(times: Int, sub: Rule0): Rule0

    Matches the given sub rule a specified number of times.

    Matches the given sub rule a specified number of times. If the given number is zero the result is equivalent to the EMPTY match.

  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. def noneOf(chars: Array[Char]): Rule0

    Creates a rule that matches any single character except the ones in the given character array and EOI.

    Creates a rule that matches any single character except the ones in the given character array and EOI. If the array is empty the rule is equivalent to the ANY rule.

  29. def noneOf(s: String): Rule0

    Creates a rule that matches any single character except the ones in the given string and EOI.

    Creates a rule that matches any single character except the ones in the given string and EOI. If the string is empty the rule is equivalent to the ANY rule.

  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  32. def oneOrMore[A, B](sub: Rule2[A, B], separator: Rule0): Rule1[List[(A, B)]]

    Creates a rule that one or more times tries to match a given sub rule.

    Creates a rule that one or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...

    This overload automatically builds a list from the return values of the sub rule and pushes it onto the value stack.

  33. def oneOrMore[A](sub: Rule1[A], separator: Rule0): Rule1[List[A]]

    Creates a rule that one or more times tries to match a given sub rule.

    Creates a rule that one or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...

    This overload automatically builds a list from the return values of the sub rule and pushes it onto the value stack.

  34. def oneOrMore(sub: Rule0, separator: Rule0): Rule0

    Creates a rule that one or more times tries to match a given sub rule.

    Creates a rule that one or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...
  35. def oneOrMore[A, B](sub: Rule2[A, B]): Rule1[List[(A, B)]]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches if the sub rule matched at least once. This overload automatically builds a list from the return values of its sub rule and pushes it onto the value stack. If the sub rule did not match at all the pushed list will be empty.

  36. def oneOrMore[A](sub: Rule1[A]): Rule1[List[A]]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches if the sub rule matched at least once. This overload automatically builds a list from the return values of its sub rule and pushes it onto the value stack. If the sub rule did not match at all the pushed list will be empty.

  37. def oneOrMore[A, B <: A](sub: ReductionRule1[A, B]): ReductionRule1[A, B]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches if the sub rule matched at least once.

  38. def oneOrMore(sub: Rule0): Rule0

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches if the sub rule matched at least once.

  39. def optional[A, B](sub: Rule2[A, B]): Rule1[Option[(A, B)]]

    Creates a rule that tries the given sub rule and always matches, even if the sub rule did not match.

  40. def optional[A](sub: Rule1[A]): Rule1[Option[A]]

    Creates a rule that tries the given sub rule and always matches, even if the sub rule did not match.

  41. def optional[A, B <: A](sub: ReductionRule1[A, B]): ReductionRule1[A, B]

    Creates a rule that tries the given sub rule and always matches, even if the sub rule did not match.

  42. def optional(sub: Rule0): Rule0

    Creates a rule that tries the given sub rule and always matches, even if the sub rule did not match.

  43. def push[A, B, C](a: => A, b: => B, c: => C): Rule3[A, B, C]

    Create a parser action whose three result values are pushed onto the value stack.

  44. def push[A, B](a: => A, b: => B): Rule2[A, B]

    Create a parser action whose two result values are pushed onto the value stack.

  45. def push[A](f: => A): Rule1[A]

    Create a parser action whose result value is pushed onto the value stack.

  46. def pushFromContext[A](f: (Context[Any]) => A): Rule1[A]

    Create a parser action from the given function whose result value is pushed onto the value stack.

  47. def rule[T <: Rule](label: String, options: RuleOption*)(block: => T)(implicit creator: (Matcher) => T): T

    Defines a parser rule wrapping the given rule construction block with caching and recursion protection.

    Defines a parser rule wrapping the given rule construction block with caching and recursion protection. Labels the constructed rule with the given label and optionally marks it according to the given rule options.

  48. def rule[T <: Rule](firstOption: RuleOption, more: RuleOption*)(block: => T)(implicit creator: (Matcher) => T): T

    Defines a parser rule wrapping the given rule construction block with caching and recursion protection using the given rule option(s).

  49. def rule[T <: Rule](block: => T)(implicit creator: (Matcher) => T): T

    Defines a parser rule wrapping the given rule construction block with caching and recursion protection.

  50. def run(f: => Unit): Rule0

    Creates a simple parser action.

  51. def str(chars: Array[Char]): Rule0

    Creates a rule that matches the given character array.

    Creates a rule that matches the given character array. If the array is empty the rule is equivalent to the EMPTY rule.

  52. def str(s: String): Rule0

    Creates a rule that matches the given string.

    Creates a rule that matches the given string. If the string is empty the rule is equivalent to the EMPTY rule.

  53. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  54. def test(f: => Boolean): Rule0

    Creates a simple semantic predicate.

  55. implicit def toRule(symbol: Symbol): Rule0

    Converts the given symbol into a corresponding parser rule.

  56. implicit def toRule(chars: Array[Char]): Rule0

    Converts the given character array into a corresponding parser rule.

  57. implicit def toRule(string: String): Rule0

    Converts the given string into a corresponding parser rule.

  58. def toString(): String
    Definition Classes
    AnyRef → Any
  59. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  60. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  61. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  62. def withContext[A, B, C, D, E, F, G, R](f: (A, B, C, D, E, F, G, Context[Any]) => R): WithContextAction7[A, B, C, D, E, F, G, R]
  63. def withContext[A, B, C, D, E, F, R](f: (A, B, C, D, E, F, Context[Any]) => R): WithContextAction6[A, B, C, D, E, F, R]
  64. def withContext[A, B, C, D, E, R](f: (A, B, C, D, E, Context[Any]) => R): WithContextAction5[A, B, C, D, E, R]
  65. def withContext[A, B, C, D, R](f: (A, B, C, D, Context[Any]) => R): WithContextAction4[A, B, C, D, R]
  66. def withContext[A, B, C, R](f: (A, B, C, Context[Any]) => R): WithContextAction3[A, B, C, R]
  67. def withContext[A, B, R](f: (A, B, Context[Any]) => R): WithContextAction2[A, B, R]
  68. def withContext[A, R](f: (A, Context[Any]) => R): WithContextAction1[A, R]
  69. def zeroOrMore[A, B](sub: Rule2[A, B], separator: Rule0): Rule1[List[(A, B)]]

    Creates a rule that zero or more times tries to match a given sub rule.

    Creates a rule that zero or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {nothing}
    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...

    This overload automatically builds a list from the return values of the sub rule and pushes it onto the value stack.

  70. def zeroOrMore[A](sub: Rule1[A], separator: Rule0): Rule1[List[A]]

    Creates a rule that zero or more times tries to match a given sub rule.

    Creates a rule that zero or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {nothing}
    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...

    This overload automatically builds a list from the return values of the sub rule and pushes it onto the value stack.

  71. def zeroOrMore(sub: Rule0, separator: Rule0): Rule0

    Creates a rule that zero or more times tries to match a given sub rule.

    Creates a rule that zero or more times tries to match a given sub rule. Between two sub rule matches the given separator rule has to match. So this rule matches following sequences:

    • {nothing}
    • {sub}
    • {sub} {separator} {sub}
    • {sub} {separator} {sub} {separator} {sub}
    • ...
  72. def zeroOrMore[A, B](sub: Rule2[A, B]): Rule1[List[(A, B)]]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches even if the sub rule did not match once. This overload automatically builds a list from the return values of its sub rule and pushes it onto the value stack.

  73. def zeroOrMore[A](sub: Rule1[A]): Rule1[List[A]]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches even if the sub rule did not match once. This overload automatically builds a list from the return values of its sub rule and pushes it onto the value stack.

  74. def zeroOrMore[A, B <: A](sub: ReductionRule1[A, B]): ReductionRule1[A, B]

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches even if the sub rule did not match once.

  75. def zeroOrMore(sub: Rule0): Rule0

    Creates a rule that tries the given sub rule repeatedly until it fails.

    Creates a rule that tries the given sub rule repeatedly until it fails. Matches even if the sub rule did not match once.

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped