Functions.caller_functions_recursive()

Returns a Functions object representing the functions through which the functions from current Functions object could be called.

caller_functions_recursive() → Functions

The function will retrieve extended/inter-procedural functions, meaning it works recursively. It returns the Functions object representing all the functions that ultimately call the function in question.

Query Example

from glider import *


def query():
  funcs = Functions().with_name("transfer").caller_functions_recursive().exec(2)
  
  return funcs

Example Output

Last updated