Recursively find `call_expression` nodes and create unresolved Calls references.
(state: &mut ExtractionState, node: TsNode<'_>, fn_node_id: &str)
| 2085 | |
| 2086 | /// Recursively find `call_expression` nodes and create unresolved Calls references. |
| 2087 | fn extract_call_sites(state: &mut ExtractionState, node: TsNode<'_>, fn_node_id: &str) { |
| 2088 | extract_call_expression_sites( |
| 2089 | &state.source, |
| 2090 | &state.file_path, |
| 2091 | &mut state.unresolved_refs, |
| 2092 | node, |
| 2093 | fn_node_id, |
| 2094 | ); |
| 2095 | } |
| 2096 | |
| 2097 | // ------------------------------------------------------- |
| 2098 | // Docstring extraction |
nothing calls this directly
no test coverage detected