2018-07-19 13:46:51 +02:00
|
|
|
require_relative "normalizer"
|
|
|
|
|
|
|
|
module Ruby
|
2018-09-01 14:54:25 +02:00
|
|
|
# The if must have condition and a true branch, the false is optional
|
|
|
|
#
|
|
|
|
# It maps pretty much one to one to a Vool, except for "hoisting"
|
|
|
|
#
|
|
|
|
# Ruby may have super complex expressions as the condition, whereas
|
|
|
|
# Vool may not. Ie of a Statement list all but the last are hoisted to before
|
|
|
|
# the vool if. This is equivalent, just easier to compile later
|
|
|
|
#
|
|
|
|
# The hoisintg code is in Normalizer, as it is also useed in return and while
|
2018-07-19 13:46:51 +02:00
|
|
|
class IfStatement < Statement
|
|
|
|
include Normalizer
|
|
|
|
|
|
|
|
attr_reader :condition , :if_true , :if_false
|
|
|
|
|
|
|
|
def initialize( cond , if_true , if_false = nil)
|
|
|
|
@condition = cond
|
|
|
|
@if_true = if_true
|
|
|
|
@if_false = if_false
|
|
|
|
end
|
|
|
|
|
2018-07-19 13:59:10 +02:00
|
|
|
def to_vool
|
2018-07-19 13:46:51 +02:00
|
|
|
cond , rest = *normalize_name(@condition)
|
2019-03-05 19:30:24 +01:00
|
|
|
me = Vool::IfStatement.new(cond.to_vool , @if_true&.to_vool, @if_false&.to_vool)
|
2018-07-19 13:46:51 +02:00
|
|
|
return me unless rest
|
2018-07-20 16:51:17 +02:00
|
|
|
Vool::Statements.new([ rest.to_vool , me])
|
2018-07-19 13:46:51 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def has_false?
|
|
|
|
@if_false != nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def has_true?
|
|
|
|
@if_true != nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s(depth = 0)
|
2019-03-05 19:30:24 +01:00
|
|
|
parts = ["if(#{@condition})" ]
|
|
|
|
parts << @if_true.to_s(depth + 1) if(@if_true)
|
2018-09-01 14:54:25 +02:00
|
|
|
parts += ["else" , @if_false.to_s(depth + 1)] if(@if_false)
|
2018-07-19 13:46:51 +02:00
|
|
|
parts << "end"
|
|
|
|
at_depth(depth , *parts )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|