visitAndPredicate method
Implementation
@override
Matcher visitAndPredicate(AndPredicateExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return AndPredicateMatcher(node, matcher);
}
@override
Matcher visitAndPredicate(AndPredicateExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return AndPredicateMatcher(node, matcher);
}