visitOneOrMore method
Implementation
@override
Matcher visitOneOrMore(OneOrMoreExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return OneOrMoreMatcher(node, matcher);
}
@override
Matcher visitOneOrMore(OneOrMoreExpression node) {
final child = node.expression;
final matcher = child.accept(this);
return OneOrMoreMatcher(node, matcher);
}