visit method

R visit(
  1. AstNode e,
  2. A arg
)

Visits the node e by calling AstNode.accept.

Implementation

R visit(AstNode e, A arg) => e.accept(this, arg);