visitNode method

R? visitNode(
  1. AstNode node
)

Implementation

R? visitNode(AstNode node) {
  node.visitChildren(this);
  return null;
}