subAccept method

  1. @override
void subAccept(
  1. AbstractASTVisitor visitor
)
override

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);
}