namedChildren property

Iterable<TreeSitterNode> get namedChildren

Implementation

Iterable<TreeSitterNode> get namedChildren sync* {
  for (var childIndex = 0; childIndex < children.length; childIndex++) {
    final candidate = _bindChild(childIndex);
    if (candidate.isNamed) yield candidate;
  }
}