subAccept method
Visit all the sub nodes of this, doing nothing by default.
Implementation
@override
void subAccept(AbstractASTVisitor visitor) {
superType?.accept(visitor);
for (final implementsType in implementsTypes) {
implementsType.accept(visitor);
}
for (final withType in withTypes) {
withType.accept(visitor);
}
definition.accept(visitor);
}