clockIsGt function
Tree-sitter 0.25.10 strict lexicographic clock_is_gt comparison.
Implementation
bool clockIsGt(TSClock clock, TSClock other) {
final secondsComparison = clock.seconds.compareTo(other.seconds);
if (secondsComparison != 0) return secondsComparison > 0;
return clock.nanoseconds > other.nanoseconds;
}