Call.name
Returns the called function name
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 instructionsOutput Example

Last updated