visitCapture method
Implementation
@override
List<Matcher> visitCapture(CaptureExpression node) {
if (postfix) {
return _visitSingle(
node, (matcher) => PostfixCaptureMatcher(node, matcher));
} else {
return _visitSingle(node, (matcher) => CaptureMatcher(node, matcher));
}
}