(&self, node: Node<'t>)
| 397 | // --- modifiers / hooks (languages/java.ts) ----------------------------------- |
| 398 | |
| 399 | fn modifiers_child(&self, node: Node<'t>) -> Option<Node<'t>> { |
| 400 | (0..node.named_child_count()) |
| 401 | .filter_map(|i| node.named_child(i)) |
| 402 | .find(|c| c.kind() == "modifiers") |
| 403 | } |
| 404 | |
| 405 | fn visibility_of(&self, node: Node) -> Option<u8> { |
| 406 | for i in 0..node.child_count() { |
no outgoing calls
no test coverage detected