matches method
List<TreeSitterQueryMatch>
matches(
- TreeSitterQuery query,
- TreeSitterNode node, {
- String? source,
- TreeSitterQueryTextProvider? textProvider,
Implementation
List<TreeSitterQueryMatch> matches(
TreeSitterQuery query,
TreeSitterNode node, {
String? source,
TreeSitterQueryTextProvider? textProvider,
}) {
return matchesWithOptions(
query,
node,
const TreeSitterQueryCursorOptions(),
source: source,
textProvider: textProvider,
);
}