rubyx/lib/vool/statements/while_statement.rb

38 lines
904 B
Ruby
Raw Normal View History

require_relative "normalizer"
2017-04-01 20:28:57 +02:00
module Vool
class WhileStatement < Statement
include Normalizer
attr_reader :condition , :body
2017-04-03 10:49:21 +02:00
def initialize( condition , body )
2017-04-03 10:49:21 +02:00
@condition = condition
@body = body
2017-04-03 10:49:21 +02:00
end
def normalize
2018-03-16 14:11:17 +01:00
cond , rest = *normalize_name(@condition)
me = WhileStatement.new(cond , @body.normalize)
return me unless rest
rest << me
rest
end
def to_mom( method )
merge_label = Mom::Label.new( "merge_label_#{object_id}")
cond_label = Mom::Label.new( "cond_label_#{object_id}")
cond_label << Mom::TruthCheck.new(condition.slot_definition(method) , merge_label)
cond_label << @body.to_mom(method)
cond_label << Mom::Jump.new(cond_label)
cond_label << merge_label
end
def each(&block)
block.call(self)
@condition.each(&block)
@body.each(&block)
2017-04-08 11:10:42 +02:00
end
2017-04-01 20:28:57 +02:00
end
end