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