DelegatingAstVisitor<T> constructor

const DelegatingAstVisitor<T>(
  1. Iterable<AstVisitor<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 DelegatingAstVisitor(this.delegates);