Call.get_call_type()
Returns the type of the call
from glider import *
def query():
instructions = (
Instructions()
.exec(100)
.filter(lambda x: x.is_call())
)
for ins in instructions:
call = ins.get_value()
if isinstance(call, Call):
print(call.get_call_type())
return instructions
Last updated