Callable.instructions()
Returns an Instructions object for the instructions of the function/modifier.
Example
from glider import *
def query():
functions = Functions().exec(1)
instructions = []
for instruction in functions[0].instructions().exec():
# Return an array of all instructions for a function
instructions.append(instruction)
return instructionsExample output

Last updated