class Rule0 extends Rule

A rule which does not affect the parsers value stack.

Linear Supertypes
Rule, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Rule0
  2. Rule
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Rule0(matcher: Matcher)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def -(upperBound: String): Rule0
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def append(other: Matcher): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  6. def append(other: Rule): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  7. def append(f: (Context[Any]) => Boolean): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  8. def append(action: Action[_]): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  9. def appendChoice(other: Matcher): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  10. def appendChoice(other: Rule): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  11. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def label(label: String): Rule0.this.type
    Definition Classes
    Rule
  19. val matcher: Matcher
    Definition Classes
    Rule0Rule
  20. def memoMismatches: Rule0.this.type
    Definition Classes
    Rule
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  24. def skipNode: Rule0.this.type
    Definition Classes
    Rule
  25. def suppressNode: Rule0.this.type
    Definition Classes
    Rule
  26. def suppressSubnodes: Rule0.this.type
    Definition Classes
    Rule
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    Rule → AnyRef → Any
  29. def unary_!: Rule0

    Creates a "NOT" syntactic predicate according to the PEG formalism.

    Creates a "NOT" syntactic predicate according to the PEG formalism.

    Definition Classes
    Rule
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. def withMatcher(matcher: Matcher): Rule0.this.type
    Attributes
    protected
    Definition Classes
    Rule0Rule
  34. def |(other: Rule0): Rule0
  35. def ~[A, B, C, D, E, F, G](other: Rule7[A, B, C, D, E, F, G]): Rule7[A, B, C, D, E, F, G]
  36. def ~[A, B, C, D, E, F](other: Rule6[A, B, C, D, E, F]): Rule6[A, B, C, D, E, F]
  37. def ~[A, B, C, D, E](other: Rule5[A, B, C, D, E]): Rule5[A, B, C, D, E]
  38. def ~[A, B, C, D](other: Rule4[A, B, C, D]): Rule4[A, B, C, D]
  39. def ~[A, B, C](other: Rule3[A, B, C]): Rule3[A, B, C]
  40. def ~[A, B](other: Rule2[A, B]): Rule2[A, B]
  41. def ~[A](other: Rule1[A]): Rule1[A]
  42. def ~[Z, R](other: ReductionRule1[Z, R]): ReductionRule1[Z, R]
  43. def ~[Y, Z, R](other: ReductionRule2[Y, Z, R]): ReductionRule2[Y, Z, R]
  44. def ~[X, Y, Z, R](other: ReductionRule3[X, Y, Z, R]): ReductionRule3[X, Y, Z, R]
  45. def ~[Z](other: PopRule1[Z]): PopRule1[Z]
  46. def ~[Y, Z](other: PopRule2[Y, Z]): PopRule2[Y, Z]
  47. def ~[X, Y, Z](other: PopRule3[X, Y, Z]): PopRule3[X, Y, Z]
  48. def ~(other: Rule0): Rule0.this.type

    Connects two rules into a rule a sequence.

    Connects two rules into a rule a sequence.

    Definition Classes
    Rule
  49. def ~%(f: (String) => Unit): Rule0.this.type

    Creates a simple parser action with the input text matched by the immediately preceding rule as parameter.

    Creates a simple parser action with the input text matched by the immediately preceding rule as parameter.

    Definition Classes
    Rule
  50. def ~:%(f: (Char) => Unit): Rule0.this.type

    Creates a simple parser action with the first char of the input text matched by the immediately preceding rule as parameter.

    Creates a simple parser action with the first char of the input text matched by the immediately preceding rule as parameter.

    Definition Classes
    Rule
  51. def ~:>[R](f: (Char) => R): Rule1[R]
  52. def ~:?(f: (Char) => Boolean): Rule0.this.type

    Creates a semantic predicate on the first char of the input text matched by the immediately preceding rule.

    Creates a semantic predicate on the first char of the input text matched by the immediately preceding rule.

    Definition Classes
    Rule
  53. def ~>[R](f: (String) => R): Rule1[R]
  54. def ~>>[R](f: (IndexRange) => R): Rule1[R]
  55. def ~?(f: (String) => Boolean): Rule0.this.type

    Creates a semantic predicate on the input text matched by the immediately preceding rule.

    Creates a semantic predicate on the input text matched by the immediately preceding rule.

    Definition Classes
    Rule
  56. def ~~%[X, Y, Z](f: (X, Y, Z) => Unit): PopRule3[X, Y, Z]
  57. def ~~%[Y, Z](f: (Y, Z) => Unit): PopRule2[Y, Z]
  58. def ~~%[Z](f: (Z) => Unit): PopRule1[Z]
  59. def ~~>[X, Y, Z, R](f: (X, Y, Z) => R): ReductionRule3[X, Y, Z, R]
  60. def ~~>[Y, Z, R](f: (Y, Z) => R): ReductionRule2[Y, Z, R]
  61. def ~~>[Z, R](f: (Z) => R): ReductionRule1[Z, R]
  62. def ~~?[X, Y, Z](f: (X, Y, Z) => Boolean): PopRule3[X, Y, Z]
  63. def ~~?[Y, Z](f: (Y, Z) => Boolean): PopRule2[Y, Z]
  64. def ~~?[Z](f: (Z) => Boolean): PopRule1[Any]

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 Rule

Inherited from AnyRef

Inherited from Any

Ungrouped