Call.signature

Returns the called function signature

property | signature() -> 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().signature)

    return instructions

Output Example

Last updated