copy method

  1. @override
ContinuationParser<R, S> copy()
override

Returns a shallow copy of the receiver.

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

Implementation

@override
ContinuationParser<R, S> copy() =>
    ContinuationParser<R, S>(delegate, handler);