findMatches method
Implementation
void findMatches(List<Match> matches) {
// recursion
if (baseMapping != null)
baseMapping!.findMatches(matches);
// own matches
for (var operation in operations) {
operation.findMatches(this, matches);
}
}