(&self, node: Node<'t>, kind: &str)
| 1121 | } |
| 1122 | |
| 1123 | fn find_child_by_kind(&self, node: Node<'t>, kind: &str) -> Option<Node<'t>> { |
| 1124 | (0..node.named_child_count()) |
| 1125 | .filter_map(|i| node.named_child(i)) |
| 1126 | .find(|c| c.kind() == kind) |
| 1127 | } |
| 1128 | |
| 1129 | /// extractVariable: C takes the dedicated branch (file-scope declarators, |
| 1130 | /// tree-sitter.ts:2795); cpp takes the TS GENERIC fallback (direct |
no outgoing calls
no test coverage detected