Instruction.is_catch()
Returns True if the instruction is catch instruction in a try-catch block, otherwise returns False.
Query Example
from glider import *
def query():
return Instructions().exec(100000).filter(lambda x: x.is_catch())Output Example

Last updated