visitCapture method
Implementation
@override
Matcher visitCapture(CaptureExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return CaptureMatcher(node, matcher);
}
@override
Matcher visitCapture(CaptureExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return CaptureMatcher(node, matcher);
}