findMatches method

void findMatches(
  1. List<Match> matches
)

Implementation

void findMatches(List<Match> matches) {
  // recursion

  if (baseMapping != null)
    baseMapping!.findMatches(matches);

  // own matches

  for (var operation in operations) {
    operation.findMatches(this, matches);
  }
}