Returns a list of Call objects that represents called functions from the function/modifier.
Last updated 1 month 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