rubyx/lib/ast/while_expression.rb

23 lines
675 B
Ruby
Raw Normal View History

2014-05-10 18:02:51 +02:00
module Ast
class WhileExpression < Expression
# attr_reader :condition, :body
def compile context , into
while_block = into.new_block "#{into.name}_while"
ret = while_block.new_block "#{into.name}_return"
puts "compiling while condition #{condition}"
2014-05-22 13:56:31 +02:00
cond_val = condition.compile(context , while_block)
while_block.b ret , condition_code: cond_val.not_operator
last = nil
body.each do |part|
puts "compiling in while #{part}"
2014-05-22 13:56:31 +02:00
last = part.compile(context , while_block )
end
2014-05-22 13:56:31 +02:00
while_block.b while_block
2014-05-22 20:38:57 +02:00
puts "compile while end"
into.insert_at ret
return last
end
2014-05-10 18:02:51 +02:00
end
end