2017-09-12 16:49:42 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
2019-10-03 23:36:49 +02:00
|
|
|
module Sol
|
2019-10-03 19:55:41 +02:00
|
|
|
class TestSendCachedSimpleSlotMachine < MiniTest::Test
|
2019-10-03 23:36:49 +02:00
|
|
|
include SolCompile
|
2017-09-12 16:49:42 +02:00
|
|
|
|
|
|
|
def setup
|
2019-09-12 12:10:31 +02:00
|
|
|
@compiler = compile_main( "a = 5; a.div4;return ")
|
2019-10-03 19:55:41 +02:00
|
|
|
@ins = @compiler.slot_instructions.next
|
2017-12-05 20:46:37 +01:00
|
|
|
end
|
2019-08-12 10:57:32 +02:00
|
|
|
def test_check_type
|
2019-08-16 20:43:54 +02:00
|
|
|
assert_equal NotSameCheck , @ins.next(1).class , @ins
|
2017-09-14 17:42:01 +02:00
|
|
|
end
|
2019-08-12 10:57:32 +02:00
|
|
|
def test_type_update
|
2018-03-16 15:32:22 +01:00
|
|
|
load = @ins.next(2)
|
2018-03-17 17:02:09 +01:00
|
|
|
assert_equal :message , load.right.known_object , load
|
2020-02-17 08:27:42 +01:00
|
|
|
assert_equal :local1 , load.right.slots.name , load
|
|
|
|
assert_equal :type , load.right.slots.next_slot.name , load
|
2017-09-14 17:42:01 +02:00
|
|
|
end
|
2019-08-12 10:57:32 +02:00
|
|
|
def test_check_resolve_call
|
2018-04-08 17:55:17 +02:00
|
|
|
assert_equal ResolveMethod , @ins.next(3).class , @ins
|
2017-09-12 16:49:42 +02:00
|
|
|
end
|
2019-08-12 10:57:32 +02:00
|
|
|
def test_dynamic_call_last
|
|
|
|
assert_equal DynamicCall , @ins.next(7).class , @ins
|
2017-12-05 20:46:37 +01:00
|
|
|
end
|
|
|
|
|
2019-08-12 10:57:32 +02:00
|
|
|
def test_array
|
2019-08-16 20:43:54 +02:00
|
|
|
check_array [SlotLoad, NotSameCheck, SlotLoad, ResolveMethod ,
|
2019-08-17 22:29:42 +02:00
|
|
|
Label, MessageSetup, ArgumentTransfer, DynamicCall,
|
|
|
|
SlotLoad, ReturnJump, Label ,
|
2019-08-16 20:43:54 +02:00
|
|
|
ReturnSequence, Label] , @ins
|
2018-03-15 16:21:46 +01:00
|
|
|
end
|
|
|
|
|
2017-09-12 16:49:42 +02:00
|
|
|
end
|
|
|
|
end
|