The function returns Instructions that represent the condition part in loop operators. It will return for all types of loops e.g. while and for
Example
from glider import*defquery(): functions =Functions().without_modifier_names(["onlyOwner"]).exec(100) if_loop_instructions = []for function in functions:# For each function without an "onlyOwner" modifier, return the if loop instructionsfor instruction in function.if_loop_instructions().exec(): if_loop_instructions.append(instruction)return if_loop_instructions