Instruction.is_catch()
Returns True if the instruction is catch instruction in a try-catch block, otherwise returns False.
is_catch() -> bool
Query Example
from glider import *
def query():
return Instructions().exec(100000).filter(lambda x: x.is_catch())With the Glider 1.0 update, calling the exec function returns an APIList[Instruction]. You can then use Instruction functions, which are applied to each element of the APIList[Instruction]
Output Example

Last updated