Instruction.get_component()

Returns the instruction's i-th component.

get_component(i : int) → Value | NoneObject

Query Example

from glider import *

def query():
    instructions = Instructions().exec(1,1)
  
    print(instructions[0].get_component(0).expression)
    return instructions

Output Example

Last updated