CatchInstruction.get_block_instructions()

Returns all instructions from the catch block

get_block_instructions() -> APIList[Instruction]

Query Example

from glider import *

def query():
    catch_instructions = Instructions().catch_instructions().exec(1,1)

    return catch_instructions + catch_instructions[0].get_block_instructions()

Output Example

Last updated