Instruction.is_call()
Returns True if the instruction is call instruction, otherwise returns False.
Query example
from glider import *
def query():
return Instructions().exec(100).filter(lambda x: x.is_call())Output example

Last updated