2019-08-14 13:59:54 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSendCachedSimpleMom < MiniTest::Test
|
|
|
|
include VoolCompile
|
|
|
|
|
|
|
|
def setup
|
2019-09-12 12:10:31 +02:00
|
|
|
@compiler = compile_main( "5.div8")
|
2019-08-14 13:59:54 +02:00
|
|
|
@ins = @compiler.mom_instructions.next
|
|
|
|
end
|
|
|
|
def test_check_type
|
|
|
|
assert_equal NotSameCheck , @ins.class , @ins
|
|
|
|
end
|
|
|
|
def test_check_resolve_call
|
|
|
|
assert_equal ResolveMethod , @ins.next(2).class , @ins
|
|
|
|
end
|
|
|
|
def test_dynamic_call_last
|
|
|
|
assert_equal DynamicCall , @ins.next(6).class , @ins
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_array
|
|
|
|
check_array [NotSameCheck, SlotLoad, ResolveMethod, Label, MessageSetup ,
|
2019-08-17 22:29:42 +02:00
|
|
|
ArgumentTransfer, DynamicCall, SlotLoad, ReturnJump,
|
|
|
|
Label, ReturnSequence, Label] , @ins
|
2019-08-14 13:59:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|