2017-09-12 17:49:42 +03:00
|
|
|
require_relative "../helper"
|
|
|
|
|
2019-10-04 00:36:49 +03:00
|
|
|
module Sol
|
2019-10-03 20:55:41 +03:00
|
|
|
class TestSendCachedSimpleSlotMachine < MiniTest::Test
|
2019-10-04 00:36:49 +03:00
|
|
|
include SolCompile
|
2017-09-12 17:49:42 +03:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 13:10:31 +03:00
|
|
|
@compiler = compile_main( "a = 5; a.div4;return ")
|
2019-10-03 20:55:41 +03:00
|
|
|
@ins = @compiler.slot_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
|
2020-02-17 14:27:42 +07:00
|
|
|
assert_equal :local1 , load.right.slots.name , load
|
|
|
|
assert_equal :type , load.right.slots.next_slot.name , 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
|