Instruction.is_entry_point()
Returns true if the instruction is entry_point instruction, otherwise returns false.
Query Example
from glider import *
def query():
return Instructions().exec(1000).filter(lambda x: x.is_entry_point())Output Example

Last updated