2017-09-05 12:04:52 +03:00
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
module Vool
|
|
|
|
class WhileStatement < Statement
|
2018-04-20 09:56:06 +03:00
|
|
|
attr_reader :condition , :body , :hoisted
|
2017-04-03 11:49:21 +03:00
|
|
|
|
2018-04-20 09:56:06 +03:00
|
|
|
def initialize( condition , body , hoisted = nil)
|
|
|
|
@hoisted = hoisted
|
2017-04-03 11:49:21 +03:00
|
|
|
@condition = condition
|
2018-03-16 12:33:11 +05:30
|
|
|
@body = body
|
2017-04-03 11:49:21 +03:00
|
|
|
end
|
2017-04-06 16:06:51 +03:00
|
|
|
|
2018-07-05 14:02:38 +03:00
|
|
|
def to_mom( compiler )
|
2019-08-07 15:08:45 +03:00
|
|
|
merge_label = Mom::Label.new(self, "merge_label_#{object_id.to_s(16)}")
|
|
|
|
cond_label = Mom::Label.new(self, "cond_label_#{object_id.to_s(16)}")
|
2018-04-20 09:56:06 +03:00
|
|
|
codes = cond_label
|
2018-07-05 14:02:38 +03:00
|
|
|
codes << @hoisted.to_mom(compiler) if @hoisted
|
2019-08-16 14:09:56 +03:00
|
|
|
codes << @condition.to_mom(compiler) if @condition.is_a?(SendStatement)
|
2019-08-19 11:33:12 +03:00
|
|
|
codes << Mom::TruthCheck.new(condition.to_slot(compiler) , merge_label)
|
2018-07-05 14:02:38 +03:00
|
|
|
codes << @body.to_mom(compiler)
|
2018-04-20 09:56:06 +03:00
|
|
|
codes << Mom::Jump.new(cond_label)
|
|
|
|
codes << merge_label
|
2017-09-05 12:04:52 +03:00
|
|
|
end
|
|
|
|
|
2018-03-16 12:33:11 +05:30
|
|
|
def each(&block)
|
|
|
|
block.call(self)
|
2019-08-17 15:58:27 +03:00
|
|
|
@condition.each(&block)
|
2018-04-20 09:56:06 +03:00
|
|
|
@hoisted.each(&block) if @hoisted
|
2018-03-16 12:33:11 +05:30
|
|
|
@body.each(&block)
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
|
|
|
|
2018-07-03 22:18:19 +03:00
|
|
|
def to_s(depth = 0)
|
2019-08-17 23:27:55 +03:00
|
|
|
lines =[ "while (#{@condition})" , @body.to_s(1) , "end"]
|
|
|
|
lines.unshift( @hoisted.to_s) if @hoisted
|
|
|
|
at_depth(depth , *lines )
|
2018-07-03 22:18:19 +03:00
|
|
|
end
|
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
end
|
|
|
|
end
|