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