visitAndPredicate method

  1. @override
Matcher<Expression> visitAndPredicate(
  1. AndPredicateExpression node
)
override

Implementation

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