propertySettings method
Implementation
List<TreeSitterQueryProperty> propertySettings(int patternIndex) {
_checkNotDisposed();
_checkPatternIndex(patternIndex);
return patternIndex < propertySettingsByPattern.length
? propertySettingsByPattern[patternIndex]
: const [];
}