apply method

void apply(
  1. Rule r
)

Implementation

void apply(Rule r) {
  for (Rule subRule in r.subRules) {
    this.apply(subRule);
  }
}