accept<A, R> method
Calls the appropriate method on the visitor
to make it recognize this
node.
Implementation
@override
R accept<A, R>(AstVisitor<A, R> visitor, A arg) {
return visitor.visitWhen(this, arg);
}
Calls the appropriate method on the visitor
to make it recognize this
node.
@override
R accept<A, R>(AstVisitor<A, R> visitor, A arg) {
return visitor.visitWhen(this, arg);
}