Returns the Value object representing the leftmost destination of the instruction
Last updated 6 months ago
get_dest() -> Union[, ]
get_dest() -> Union[
,
]
This function will return 'a' in this case: 'a = b = c = 5'
a
a = b = c = 5
from glider import * def query(): instructions = ( Instructions() .exec(1,1) ) for instruction in instructions: print(instruction.get_value().get_dest().expression) return instructions
Value
NoneObject