DelegatingAstVisitor2<T> constructor

const DelegatingAstVisitor2<T>(
  1. Iterable<AstVisitor2<T>> delegates
)

Initialize a newly created visitor to use each of the given delegate visitors to visit the nodes of an AST structure.

Implementation

const DelegatingAstVisitor2(this.delegates);