operator == method

  1. @override
bool operator ==(
  1. Object other
)
override

Compiled queries compare by owner identity, matching Rust's native TSQuery pointer equality rather than structural query-source equality.

Implementation

@override
bool operator ==(Object other) => identical(this, other);