accept<T> method
The ParseTreeVisitor
needs a double dispatch method. */
Implementation
@override
T? accept<T>(ParseTreeVisitor<T> visitor) {
if (visitor is CandidVisitor<T>) {
return visitor.visitFuncAnn(this);
} else {
return visitor.visitChildren(this);
}
}