hasConflict method

bool hasConflict(
  1. Tristate other
)

If two semantics nodes both have this property, they have conflict and can't be merged.

Implementation

bool hasConflict(Tristate other) => this != Tristate.none && other != Tristate.none;