hasEqualProperties method

  1. @override
bool hasEqualProperties(
  1. covariant EndOfInputParser other
)
override

Compares the properties of this parser with other.

Overridden in subclasses that add new state.

Implementation

@override
bool hasEqualProperties(EndOfInputParser other) =>
    super.hasEqualProperties(other) && message == other.message;