class ReductionRule3_7[-X, -Y, -Z, +A, +B, +C, +D, +E, +F, +G] extends ReductionRule
A rule taking three values off the value stack and replacing them with seven values.
- Alphabetic
- By Inheritance
- ReductionRule3_7
- ReductionRule
- Rule
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new ReductionRule3_7(matcher: Matcher)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def append(other: Matcher): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- def append(other: Rule): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- def append(f: (Context[Any]) => Boolean): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- def append(action: Action[_]): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- def appendChoice(other: Matcher): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- def appendChoice(other: Rule): Matcher
- Attributes
- protected
- Definition Classes
- Rule
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def label(label: String): ReductionRule3_7.this.type
- Definition Classes
- Rule
- val matcher: Matcher
- Definition Classes
- ReductionRule3_7 → Rule
- def memoMismatches: ReductionRule3_7.this.type
- Definition Classes
- Rule
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- def skipNode: ReductionRule3_7.this.type
- Definition Classes
- Rule
- def suppressNode: ReductionRule3_7.this.type
- Definition Classes
- Rule
- def suppressSubnodes: ReductionRule3_7.this.type
- Definition Classes
- Rule
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Rule → AnyRef → Any
- 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
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def withMatcher(matcher: Matcher): ReductionRule3_7.this.type
- Attributes
- protected
- Definition Classes
- ReductionRule3_7 → Rule
- def |[XX <: X, YY <: Y, ZZ <: Z, AA >: A, BB >: B, CC >: C, DD >: D, EE >: E, FF >: F, GG >: G](other: ReductionRule3_7[XX, YY, ZZ, AA, BB, CC, DD, EE, FF, GG]): ReductionRule3_7[XX, YY, ZZ, AA, BB, CC, DD, EE, FF, GG]
- def ~[GG >: G, RG](other: ReductionRule1[GG, RG]): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, RG]
- def ~[FF >: F, GG >: G, RF, RG](other: ReductionRule2_2[FF, GG, RF, RG]): ReductionRule3_7[X, Y, Z, A, B, C, D, E, RF, RG]
- def ~[FF >: F, GG >: G, RF](other: ReductionRule2[FF, GG, RF]): ReductionRule3_6[X, Y, Z, A, B, C, D, E, RF]
- def ~[EE >: E, FF >: F, GG >: G, RE, RF, RG](other: ReductionRule3_3[EE, FF, GG, RE, RF, RG]): ReductionRule3_7[X, Y, Z, A, B, C, D, RE, RF, RG]
- def ~[EE >: E, FF >: F, GG >: G, RE, RF](other: ReductionRule3_2[EE, FF, GG, RE, RF]): ReductionRule3_6[X, Y, Z, A, B, C, D, RE, RF]
- def ~[EE >: E, FF >: F, GG >: G, RE](other: ReductionRule3[EE, FF, GG, RE]): ReductionRule3_5[X, Y, Z, A, B, C, D, RE]
- def ~[GG >: G](other: PopRule1[GG]): ReductionRule3_6[X, Y, Z, A, B, C, D, E, F]
- def ~[FF >: F, GG >: G](other: PopRule2[FF, GG]): ReductionRule3_5[X, Y, Z, A, B, C, D, E]
- def ~[EE >: E, FF >: F, GG >: G](other: PopRule3[EE, FF, GG]): ReductionRule3_4[X, Y, Z, A, B, C, D]
- def ~(other: Rule0): ReductionRule3_7.this.type
Connects two rules into a rule a sequence.
Connects two rules into a rule a sequence.
- Definition Classes
- Rule
- def ~%(f: (String) => Unit): ReductionRule3_7.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
- def ~:%(f: (Char) => Unit): ReductionRule3_7.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
- def ~:?(f: (Char) => Boolean): ReductionRule3_7.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
- def ~?(f: (String) => Boolean): ReductionRule3_7.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
- def ~~%(f: (G) => Unit): ReductionRule3_6[X, Y, Z, A, B, C, D, E, F]
- def ~~%(f: (F, G) => Unit): ReductionRule3_5[X, Y, Z, A, B, C, D, E]
- def ~~%(f: (E, F, G) => Unit): ReductionRule3_4[X, Y, Z, A, B, C, D]
- def ~~%(f: (D, E, F, G) => Unit): ReductionRule3_3[X, Y, Z, A, B, C]
- def ~~%(f: (C, D, E, F, G) => Unit): ReductionRule3_2[X, Y, Z, A, B]
- def ~~%(f: (B, C, D, E, F, G) => Unit): ReductionRule3[X, Y, Z, A]
- def ~~%(f: (A, B, C, D, E, F, G) => Unit): PopRule3[X, Y, Z]
- def ~~>[RG](f: (G) => RG): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, RG]
- def ~~>[RF](f: (F, G) => RF): ReductionRule3_6[X, Y, Z, A, B, C, D, E, RF]
- def ~~>[RE](f: (E, F, G) => RE): ReductionRule3_5[X, Y, Z, A, B, C, D, RE]
- def ~~>[RD](f: (D, E, F, G) => RD): ReductionRule3_4[X, Y, Z, A, B, C, RD]
- def ~~>[RC](f: (C, D, E, F, G) => RC): ReductionRule3_3[X, Y, Z, A, B, RC]
- def ~~>[RB](f: (B, C, D, E, F, G) => RB): ReductionRule3_2[X, Y, Z, A, RB]
- def ~~>[RA](f: (A, B, C, D, E, F, G) => RA): ReductionRule3[X, Y, Z, RA]
- def ~~?(f: (G) => Boolean): ReductionRule3_6[X, Y, Z, A, B, C, D, E, F]
- def ~~?(f: (F, G) => Boolean): ReductionRule3_5[X, Y, Z, A, B, C, D, E]
- def ~~?(f: (E, F, G) => Boolean): ReductionRule3_4[X, Y, Z, A, B, C, D]
- def ~~?(f: (D, E, F, G) => Boolean): ReductionRule3_3[X, Y, Z, A, B, C]
- def ~~?(f: (C, D, E, F, G) => Boolean): ReductionRule3_2[X, Y, Z, A, B]
- def ~~?(f: (B, C, D, E, F, G) => Boolean): ReductionRule3[X, Y, Z, A]
- def ~~?(f: (A, B, C, D, E, F, G) => Boolean): PopRule3[X, Y, Z]
- def ~~~%(f: (G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (E, F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (D, E, F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (C, D, E, F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (B, C, D, E, F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~%(f: (A, B, C, D, E, F, G) => Unit): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (E, F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (D, E, F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (C, D, E, F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (B, C, D, E, F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
- def ~~~?(f: (A, B, C, D, E, F, G) => Boolean): ReductionRule3_7[X, Y, Z, A, B, C, D, E, F, G]
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)