hasEqualProperties method

  1. @override
bool hasEqualProperties(
  1. covariant EpsilonParser<R> other
)
override

Compares the properties of this parser with other.

Overridden in subclasses that add new state.

Implementation

@override
bool hasEqualProperties(EpsilonParser<R> other) =>
    super.hasEqualProperties(other) && result == other.result;