rubyx/test/vool/to_mom/send/test_send_cached_simple.rb

35 lines
971 B
Ruby
Raw Normal View History

require_relative "../helper"
module Vool
class TestSendCachedSimpleMom < MiniTest::Test
include MomCompile
2018-03-16 18:41:17 +05:30
include Mom
def setup
Risc.machine.boot
2018-03-18 10:50:37 +05:30
@ins = compile_first_method( "a = 5; a.mod4")
2017-12-05 21:46:37 +02:00
end
2018-03-16 20:02:22 +05:30
def test_check_type
assert_equal NotSameCheck , @ins.next.class , @ins
2017-09-14 18:42:01 +03:00
end
2018-03-16 20:02:22 +05:30
def test_type_update
load = @ins.next(2)
assert_equal :message , load.right.known_object , load
assert_equal :receiver , load.right.slots[0] , load
assert_equal :type , load.right.slots[1] , load
2017-09-14 18:42:01 +03:00
end
2018-03-16 20:02:22 +05:30
def test_check_resolve_call
assert_equal SimpleCall , @ins.next(5).class , @ins
end
2018-03-16 20:02:22 +05:30
def test_dynamic_call_last
assert_equal DynamicCall , @ins.last.class , @ins
2017-12-05 21:46:37 +02:00
end
2018-03-15 20:51:46 +05:30
def test_array
check_array [SlotLoad, NotSameCheck, SlotLoad, MessageSetup, ArgumentTransfer, SimpleCall ,
SlotLoad, Label, MessageSetup, ArgumentTransfer, DynamicCall] , @ins
2018-03-15 20:51:46 +05:30
end
end
end