31 lines
852 B
Ruby
31 lines
852 B
Ruby
require_relative "helper"
|
|
|
|
module VoolBlocks
|
|
class TestConditionIfMom < MiniTest::Test
|
|
include MomCompile
|
|
include Mom
|
|
|
|
def setup
|
|
Parfait.boot!(Parfait.default_test_options)
|
|
#Risc::Builtin.boot_functions
|
|
@ins = compile_first_block( "if(5.div4) ; @a = 6 ; else; @a = 5 ; end")
|
|
end
|
|
|
|
def pest_condition
|
|
assert_equal TruthCheck , @ins.next(4).class
|
|
end
|
|
def pest_condition_is_slot
|
|
assert_equal SlotDefinition , @ins.next(4).condition.class , @ins
|
|
end
|
|
def pest_hoisted_dynamic_call
|
|
assert_equal SimpleCall , @ins.next(2).class
|
|
assert_equal :div4 , @ins.next(2).method.name
|
|
end
|
|
def pest_array
|
|
check_array [MessageSetup, ArgumentTransfer, SimpleCall, SlotLoad, TruthCheck, Label ,
|
|
SlotLoad, Jump, Label, SlotLoad, Label] , @ins
|
|
end
|
|
|
|
end
|
|
end
|