class RuleTransformer extends BasicTransformer
- Alphabetic
- By Inheritance
- RuleTransformer
- BasicTransformer
- Function1
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new RuleTransformer(rules: RewriteRule*)
Value Members
- def andThen[A](g: (Node) => A): (Node) => A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def apply(n: Node): Node
- Definition Classes
- BasicTransformer → Function1
- def compose[A](g: (A) => Node): (A) => Node
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def toString(): String
- Definition Classes
- Function1 → AnyRef → Any
- def transform(n: Node): collection.Seq[Node]
- Definition Classes
- RuleTransformer → BasicTransformer
- def transform(ns: collection.Seq[Node]): collection.Seq[Node]
Call transform(Node) to each node in ns, yield ns if nothing changes, otherwise a new sequence of concatenated results.
Call transform(Node) to each node in ns, yield ns if nothing changes, otherwise a new sequence of concatenated results.
- Definition Classes
- BasicTransformer
- def transform(it: Iterator[Node], nb: NodeBuffer): collection.Seq[Node]
Call transform(Node) for each node in ns, append results to NodeBuffer.
Call transform(Node) for each node in ns, append results to NodeBuffer.
- Definition Classes
- BasicTransformer