visitRouteMatches method

  1. @internal
void visitRouteMatches(
  1. RouteMatchVisitor visitor
)

Traverse route matches in this match list in preorder until visitor returns false.

This method visit recursively into shell route matches.

Implementation

@internal
void visitRouteMatches(RouteMatchVisitor visitor) {
  _visitRouteMatches(matches, visitor);
}