rubyx/lib/vool/statements/if_statement.rb

54 lines
1.4 KiB
Ruby
Raw Normal View History

2017-04-01 20:28:57 +02:00
module Vool
class IfStatement < Statement
attr_reader :condition , :if_true , :if_false
2017-04-02 18:12:42 +02:00
2017-08-30 16:21:13 +02:00
def initialize( cond , if_true , if_false = nil)
2017-04-02 18:12:42 +02:00
@condition = cond
@if_true = if_true
@if_false = if_false
simplify_condition
end
2017-08-30 16:21:13 +02:00
def to_mom( method )
if_true = @if_true.to_mom( method )
if_false = @if_false.to_mom( method )
2017-08-30 17:23:54 +02:00
merge = Mom::Noop.new(:merge)
make_condition( add_jump(if_true,merge) , add_jump(if_false,merge) , merge)
2017-08-30 16:21:13 +02:00
end
# conditions in ruby are almost always method sends (as even comparisons are)
# currently we just deal with straight up values which get tested
# for the funny ruby logic (everything but false and nil is true)
2017-08-30 17:23:54 +02:00
def make_condition( if_true , if_false , merge)
2017-08-30 16:21:13 +02:00
check = Mom::TruthCheck.new( @condition , if_true , if_false , merge)
[ check , if_true , if_false , merge ]
end
2017-04-08 11:10:42 +02:00
def collect(arr)
@if_true.collect(arr)
@if_false.collect(arr)
super
end
def simplify_condition
return unless @condition.is_a?(ScopeStatement)
@condition = @condition.first if @condition.single?
2017-04-02 18:12:42 +02:00
end
def has_false?
@if_false != nil
end
def has_true?
@if_true != nil
end
2017-08-30 17:23:54 +02:00
private
def add_jump( block , merge)
block = [block] unless block.is_a?(Array)
block << Mom::Jump.new(merge)
block
end
2017-04-01 20:28:57 +02:00
end
end