hasConflict method
- CheckedState other
If two semantics nodes both have check state, they have conflict and can't be merged.
Implementation
bool hasConflict(CheckedState other) => this != CheckedState.none && other != CheckedState.none;
If two semantics nodes both have check state, they have conflict and can't be merged.
bool hasConflict(CheckedState other) => this != CheckedState.none && other != CheckedState.none;