(node: tree_sitter::Node)
| 49 | |
| 50 | impl ParseSymbol for Function { |
| 51 | fn matches_node(node: tree_sitter::Node) -> bool { |
| 52 | node.kind() == "function_definition" |
| 53 | } |
| 54 | |
| 55 | fn parse_symbol(node: tree_sitter::Node, ctx: &mut ParserContext) -> Result<Symbol> { |
| 56 | assert_eq!( |
nothing calls this directly
no outgoing calls
no test coverage detected