Returns the value expression's components
Last updated 1 month ago
get_components(self) -> APIList[Union[, ]]
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