walk method
Implementation
Iterable<GeneratedTreeSitterNode> walk() sync* {
if (visible) yield this;
for (final child in children) {
yield* child.walk();
}
}
Iterable<GeneratedTreeSitterNode> walk() sync* {
if (visible) yield this;
for (final child in children) {
yield* child.walk();
}
}