R visitNode(AstNode node)

Source

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