Callable.expression_instructions()

Returns expression instructions of the function/modifier.

expression_instructions() → Instructions

Example

from glider import *
def query():
  functions = Functions().exec(100)

  expressions = []
  for function in functions:
    for exp_instruction in function.expression_instructions().exec():
      # For each function, return the expressions
      expressions.append(exp_instruction)

  return expressions

Example output

Last updated