Callable.break_instructions()
Returns break instructions of the function/modifier.
break_instructions() →
Instructions
Example
from glider import *
def query():
functions = Functions().exec(100)
results = []
for function in functions:
# For each function, return each break instruction
for instruction in function.break_instructions().exec():
results.append(instruction)
return results
Example output

Last updated