Returns the value expression's components
Last updated 2 months ago
get_components(self) -> APIList[Union[Value, NoneObject]]
get_components(self) -> APIList[Union[
Value
,
NoneObject
]]
from glider import * def query(): instructions = ( Instructions() .exec(1,27) ) for instruction in instructions: for component in instruction.get_value().get_components(): print(component) print(component.expression) return instructions