accept<A, R> abstract method

R accept<A, R>(
  1. AstVisitor<A, R> visitor,
  2. A arg
)

Calls the appropriate method on the visitor to make it recognize this node.

Implementation

R accept<A, R>(AstVisitor<A, R> visitor, A arg);