hasConflict method

bool hasConflict(
  1. 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;