secondPass method

void secondPass()

Implementation

void secondPass() {
  for (Rule rule in subRules) {
    rule.secondPass();
  }
  for (RenderinstructionNode renderinstruction in renderinstructionNodes) {
    renderinstruction.secondPass(this);
  }
  for (RenderinstructionWay renderinstruction in renderinstructionOpenWays) {
    renderinstruction.secondPass(this);
  }
  for (RenderinstructionWay renderinstruction in renderinstructionClosedWays) {
    renderinstruction.secondPass(this);
  }
}