2017-09-12 17:49:42 +03:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSendCachedSimpleMom < MiniTest::Test
|
2019-08-12 11:57:32 +03:00
|
|
|
include VoolCompile
|
2017-09-12 17:49:42 +03:00
|
|
|
|
|
|
|
def setup
|
2019-08-17 23:29:42 +03:00
|
|
|
@compiler = compile_first_method( "a = 5; a.div4;return ")
|
2019-08-07 15:08:45 +03:00
|
|
|
@ins = @compiler.mom_instructions.next
|
2017-12-05 21:46:37 +02:00
|
|
|
end
|
2019-08-12 11:57:32 +03:00
|
|
|
def test_check_type
|
2019-08-16 21:43:54 +03:00
|
|
|
assert_equal NotSameCheck , @ins.next(1).class , @ins
|
2017-09-14 18:42:01 +03:00
|
|
|
end
|
2019-08-12 11:57:32 +03:00
|
|
|
def test_type_update
|
2018-03-16 20:02:22 +05:30
|
|
|
load = @ins.next(2)
|
2018-03-17 21:32:09 +05:30
|
|
|
assert_equal :message , load.right.known_object , load
|
2019-08-23 10:21:22 +03:00
|
|
|
assert_equal :local1 , load.right.slots[0] , load
|
|
|
|
assert_equal :type , load.right.slots[1] , load
|
2017-09-14 18:42:01 +03:00
|
|
|
end
|
2019-08-12 11:57:32 +03:00
|
|
|
def test_check_resolve_call
|
2018-04-08 18:55:17 +03:00
|
|
|
assert_equal ResolveMethod , @ins.next(3).class , @ins
|
2017-09-12 17:49:42 +03:00
|
|
|
end
|
2019-08-12 11:57:32 +03:00
|
|
|
def test_dynamic_call_last
|
|
|
|
assert_equal DynamicCall , @ins.next(7).class , @ins
|
2017-12-05 21:46:37 +02:00
|
|
|
end
|
|
|
|
|
2019-08-12 11:57:32 +03:00
|
|
|
def test_array
|
2019-08-16 21:43:54 +03:00
|
|
|
check_array [SlotLoad, NotSameCheck, SlotLoad, ResolveMethod ,
|
2019-08-17 23:29:42 +03:00
|
|
|
Label, MessageSetup, ArgumentTransfer, DynamicCall,
|
|
|
|
SlotLoad, ReturnJump, Label ,
|
2019-08-16 21:43:54 +03:00
|
|
|
ReturnSequence, Label] , @ins
|
2018-03-15 20:51:46 +05:30
|
|
|
end
|
|
|
|
|
2017-09-12 17:49:42 +03:00
|
|
|
end
|
|
|
|
end
|