hasEqualProperties method

  1. @override
bool hasEqualProperties(
  1. covariant ContinuationParser<R, S> other
)
override

Compare the properties of two parsers.

Override this method in all subclasses that add new state.

Implementation

@override
bool hasEqualProperties(ContinuationParser<R, S> other) =>
    super.hasEqualProperties(other) && handler == other.handler;