Call.name

Returns the called function name

property | name() -> str

Query Example

from glider import *

def query():
    instructions = (
        Instructions()
        .exec(1,98)
        .filter(lambda x: x.is_call())
    )

    for ins in instructions:
        print(ins.get_value().name)

    return instructions

Output Example

Last updated