R visitNode(AstNode node)

Source

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