basic if statement tests

This commit is contained in:
Torsten Ruger
2015-10-15 09:47:11 +03:00
parent 3d83f203ca
commit f8efdd910c
4 changed files with 101 additions and 3 deletions

View File

@ -2,15 +2,15 @@ module Phisol
Compiler.class_eval do
def on_operator_value statement
puts "operator #{statement.inspect}"
#puts "operator #{statement.inspect}"
operator , left_e , right_e = *statement
# left and right must be expressions. Expressions return a register when compiled
left_reg = process(left_e)
right_reg = process(right_e)
raise "Not register #{left_reg}" unless left_reg.is_a?(Register::RegisterValue)
raise "Not register #{right_reg}" unless right_reg.is_a?(Register::RegisterValue)
puts "left #{left_reg}"
puts "right #{right_reg}"
#puts "left #{left_reg}"
#puts "right #{right_reg}"
@method.source.add_code Register::OperatorInstruction.new(statement,operator,left_reg,right_reg)
return left_reg # though this has wrong value attached
end