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

Last updated