pub fn extract_call_edges(
parse_results: &[ParseResult],
_resolver: &NameResolver,
source_texts: &HashMap<String, String>,
) -> Vec<CodeEdge>Expand description
Extract call edges using simple text-based scanning.
This is a best-effort approach: scans function/method bodies for identifiers that match known function/method names. Does not do full flow analysis.