visitAll method

void visitAll(
  1. List<AST?> asts,
  2. C context
)

Implementation

void visitAll(List<AST?> asts, C context) {
  for (var ast in asts) {
    ast!.visit(this, context);
  }
}