2018-07-19 14:47:29 +03:00
|
|
|
|
2017-04-01 21:28:57 +03:00
|
|
|
module Vool
|
|
|
|
class IfStatement < Statement
|
2018-03-12 17:56:44 +05:30
|
|
|
|
2017-04-06 16:06:51 +03:00
|
|
|
attr_reader :condition , :if_true , :if_false
|
2017-04-02 19:12:42 +03:00
|
|
|
|
2017-08-30 17:21:13 +03:00
|
|
|
def initialize( cond , if_true , if_false = nil)
|
2017-04-02 19:12:42 +03:00
|
|
|
@condition = cond
|
2017-04-06 16:06:51 +03:00
|
|
|
@if_true = if_true
|
|
|
|
@if_false = if_false
|
|
|
|
end
|
|
|
|
|
2018-07-05 14:02:38 +03:00
|
|
|
def to_mom( compiler )
|
2019-08-07 12:06:06 +03:00
|
|
|
true_label = Mom::Label.new( self , "true_label_#{object_id.to_s(16)}")
|
|
|
|
false_label = Mom::Label.new( self , "false_label_#{object_id.to_s(16)}")
|
|
|
|
merge_label = Mom::Label.new( self , "merge_label_#{object_id.to_s(16)}")
|
2018-03-16 19:05:22 +05:30
|
|
|
|
2019-08-19 11:33:12 +03:00
|
|
|
check = Mom::TruthCheck.new(condition.to_slot(compiler) , false_label)
|
2019-08-16 20:39:08 +03:00
|
|
|
if @condition.is_a?(CallStatement)
|
2019-08-16 18:42:57 +03:00
|
|
|
head = @condition.to_mom(compiler)
|
|
|
|
head << check
|
|
|
|
else
|
|
|
|
head = check
|
|
|
|
end
|
2018-03-16 19:05:22 +05:30
|
|
|
head << true_label
|
2019-08-14 22:24:35 +03:00
|
|
|
head << if_true.to_mom(compiler) if @if_true
|
|
|
|
head << Mom::Jump.new(merge_label) if @if_false
|
2018-03-16 19:05:22 +05:30
|
|
|
head << false_label
|
2019-08-14 22:24:35 +03:00
|
|
|
head << if_false.to_mom(compiler) if @if_false
|
|
|
|
head << merge_label if @if_false
|
|
|
|
head
|
2018-03-15 20:33:38 +05:30
|
|
|
end
|
2017-08-30 17:21:13 +03:00
|
|
|
|
2018-03-15 20:40:21 +05:30
|
|
|
def each(&block)
|
|
|
|
block.call(condition)
|
2019-08-14 22:24:35 +03:00
|
|
|
@if_true.each(&block) if @if_true
|
2018-03-15 20:40:21 +05:30
|
|
|
@if_false.each(&block) if @if_false
|
2017-04-08 12:10:42 +03:00
|
|
|
end
|
|
|
|
|
2017-04-02 19:12:42 +03:00
|
|
|
def has_false?
|
|
|
|
@if_false != nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_true?
|
|
|
|
@if_true != nil
|
|
|
|
end
|
2017-08-30 18:23:54 +03:00
|
|
|
|
2018-07-03 22:18:19 +03:00
|
|
|
def to_s(depth = 0)
|
2019-08-16 16:05:45 +03:00
|
|
|
parts = ["if (#{@condition.to_s(0)})" ]
|
|
|
|
parts << " #{@if_true}" if @if_true
|
|
|
|
parts += [ "else" , " #{@if_false}"] if(@false)
|
2018-07-03 22:18:19 +03:00
|
|
|
parts << "end"
|
|
|
|
at_depth(depth , *parts )
|
|
|
|
end
|
2017-04-01 21:28:57 +03:00
|
|
|
end
|
|
|
|
end
|