rubyx/test/vool/test_if_statement.rb

30 lines
857 B
Ruby
Raw Normal View History

2017-08-30 21:27:12 +02:00
require_relative "helper"
module Vool
2017-08-30 21:54:03 +02:00
class TestConditionIfMom < MiniTest::Test
include VoolCompile
2017-08-30 21:27:12 +02:00
def setup
@compiler = compile_first_method( "if(5.div4) ; @a = 6 ; else; @a = 5 ; end;return")
2019-08-13 10:14:36 +02:00
@ins = @compiler.mom_instructions.next
2017-08-30 21:27:12 +02:00
end
2019-08-13 10:14:36 +02:00
def test_condition
assert_equal TruthCheck , @ins.next(3).class
2017-08-30 21:54:03 +02:00
end
2019-08-13 10:14:36 +02:00
def test_condition_is_slot
assert_equal SlotDefinition , @ins.next(3).condition.class , @ins
2018-03-16 14:35:22 +01:00
end
def test_hoisted_call
2018-03-21 14:24:42 +01:00
assert_equal SimpleCall , @ins.next(2).class
2018-04-19 09:00:55 +02:00
assert_equal :div4 , @ins.next(2).method.name
end
2019-08-13 10:14:36 +02:00
def test_array
check_array [MessageSetup, ArgumentTransfer, SimpleCall, TruthCheck, Label ,
SlotLoad, Jump, Label, SlotLoad, Label ,
SlotLoad, ReturnJump,Label, ReturnSequence, Label] , @ins
2017-08-30 21:27:12 +02:00
end
2018-03-16 14:35:22 +01:00
2017-08-30 21:27:12 +02:00
end
end