(node: Node, source: &str)
| 411 | |
| 412 | #[cfg(feature = "tree-sitter-ast")] |
| 413 | fn node_text(node: Node, source: &str) -> String { |
| 414 | let start = node.start_byte(); |
| 415 | let end = node.end_byte(); |
| 416 | source[start..end].trim().to_string() |
| 417 | } |
| 418 | |
| 419 | fn extract_symbols_with_regex( |
| 420 | language: &str, |
no outgoing calls
no test coverage detected