Returns the instruction's components.
Last updated 29 days ago
get_components() → APIList[Value | NoneObject]
get_components() →
APIList
[
Value
|
NoneObject
]
from glider import * def query(): instructions = Instructions().exec(1,10) for inst in instructions: for component in inst.get_components(): print(component.expression) return instructions