Returns a list of Call objects that represents called functions from the function/modifier.
Last updated 3 days ago
callee_values() β APIList[Call]
callee_values() β
APIList
[
Call
]
from glider import * def query(): functions = Functions().exec(1,5) for function in functions: for call in function.callee_values(): print(f"function {function.name}, call {call.expression}") return functions