check_function_call
Determine if a function calls another function by analyzing references between source and target files, confirming direct call relationships.
Instructions
Check if one function calls another (direct call). Analyzes if 'sourceFunction' (defined in sourceFile) contains any references to 'targetFunction' (defined in targetFile).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sourceFile | Yes | The absolute path to the file containing the definition of the caller function | |
| targetFile | Yes | The absolute path to the file containing the definition of the callee function | |
| sourceFunction | Yes | The name of the caller function (e.g. 'main') | |
| targetFunction | Yes | The name of the callee function (e.g. 'add') |