start better if mom test

This commit is contained in:
Torsten Ruger
2017-08-30 22:27:12 +03:00
parent 349dd37c82
commit c3939ef622
6 changed files with 70 additions and 12 deletions

View File

@ -10,18 +10,18 @@ module Vool
end
def to_mom( method )
if_true = @if_true.to_mom( method )
if_false = @if_false.to_mom( method )
merge = Mom::Noop.new(:merge)
make_condition( add_jump(if_true,merge) , add_jump(if_false,merge) , merge)
if_true = add_jump(@if_true.to_mom( method ) , merge)
if_false = add_jump(@if_false.to_mom( method ) , merge)
cond = hoist_condition( method )
check = Mom::TruthCheck.new( cond.pop , if_true , if_false , merge)
[ *check , if_true , if_false , merge ]
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)
def make_condition( if_true , if_false , merge)
check = Mom::TruthCheck.new( @condition , if_true , if_false , merge)
[ check , if_true , if_false , merge ]
def hoist_condition( method )
return [@condition] if @condition.is_a?(Vool::Named)
local = method.create_tmp
puts local
end
def collect(arr)