Instruction.next_block()
Returns the list of instructions following the current instruction till the branching point.
next_block() →
APIList
[
Instruction
]
Query Example
from glider import *
def query():
ins = Instructions().start_asm_instructions().exec(1)
return ins + ins[0].next_block()
Output Example
Virtual instruction, that represent asm start block

Next block instructions:




Last updated