ValueExpression.get_dest()
Returns the Value object representing the leftmost destination of the instruction
Query Example
from glider import *
def query():
instructions = (
Instructions()
.new_variable_instructions()
.exec(1,1)
)
for instruction in instructions:
print(instruction.get_value().get_dest().expression)
return instructionsExample Output

Last updated