propertyPredicates method

List<(TreeSitterQueryProperty, bool)> propertyPredicates(
  1. int patternIndex
)

Implementation

List<(TreeSitterQueryProperty, bool)> propertyPredicates(int patternIndex) {
  _checkNotDisposed();
  _checkPatternIndex(patternIndex);
  return patternIndex < propertyPredicatesByPattern.length
      ? propertyPredicatesByPattern[patternIndex]
      : const [];
}