copy method

  1. @override
PossessiveRepeatingParser<R> copy()
override

Returns a shallow copy of the receiver.

Override this method in all subclasses, return its own type.

Implementation

@override
PossessiveRepeatingParser<R> copy() =>
    PossessiveRepeatingParser<R>(delegate, min, max);