visitEachRule method

void visitEachRule(
  1. EachRule node
)
override

Implementation

void visitEachRule(EachRule node) {
  visitExpression(node.list);
  super.visitEachRule(node);
}