Callable.callee_values()

Returns a list of Call objects that represents called functions from the function/modifier.

callee_values() → APIList[Call]

Query Example

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

Example Output

Last updated