2017-04-01 20:28:57 +02:00
|
|
|
module Vool
|
|
|
|
class IfStatement < Statement
|
2017-04-06 15:06:51 +02:00
|
|
|
attr_reader :condition , :if_true , :if_false
|
2017-04-02 18:12:42 +02:00
|
|
|
|
2017-04-06 15:06:51 +02:00
|
|
|
def initialize( cond , if_true , if_false = [])
|
2017-04-02 18:12:42 +02:00
|
|
|
@condition = cond
|
2017-04-06 15:06:51 +02:00
|
|
|
@if_true = if_true
|
|
|
|
@if_false = if_false
|
|
|
|
simplify_condition
|
|
|
|
end
|
|
|
|
|
2017-04-08 11:10:42 +02:00
|
|
|
def collect(arr)
|
|
|
|
@if_true.collect(arr)
|
|
|
|
@if_false.collect(arr)
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-04-06 15:06:51 +02:00
|
|
|
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-04-01 20:28:57 +02:00
|
|
|
end
|
|
|
|
end
|