2017-09-12 16:49:42 +02:00
|
|
|
require_relative "../helper"
|
|
|
|
|
|
|
|
module Vool
|
|
|
|
class TestSendCachedSimpleMom < MiniTest::Test
|
|
|
|
include MomCompile
|
2018-03-16 14:11:17 +01:00
|
|
|
include Mom
|
2017-09-12 16:49:42 +02:00
|
|
|
|
|
|
|
def setup
|
2018-06-30 18:20:17 +02:00
|
|
|
Parfait.boot!
|
2018-04-19 09:00:55 +02:00
|
|
|
@ins = compile_first_method( "a = 5; a.div4")
|
2017-12-05 20:46:37 +01:00
|
|
|
end
|
2018-03-16 15:32:22 +01:00
|
|
|
def test_check_type
|
|
|
|
assert_equal NotSameCheck , @ins.next.class , @ins
|
2017-09-14 17:42:01 +02:00
|
|
|
end
|
2018-03-16 15:32:22 +01:00
|
|
|
def test_type_update
|
|
|
|
load = @ins.next(2)
|
2018-03-17 17:02:09 +01:00
|
|
|
assert_equal :message , load.right.known_object , load
|
2018-04-08 21:59:42 +02:00
|
|
|
assert_equal :frame , load.right.slots[0] , load
|
|
|
|
assert_equal :a , load.right.slots[1] , load
|
|
|
|
assert_equal :type , load.right.slots[2] , load
|
2017-09-14 17:42:01 +02:00
|
|
|
end
|
2018-03-16 15:32:22 +01: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
|
2018-03-16 15:32:22 +01:00
|
|
|
def test_dynamic_call_last
|
|
|
|
assert_equal DynamicCall , @ins.last.class , @ins
|
2017-12-05 20:46:37 +01:00
|
|
|
end
|
|
|
|
|
2018-03-15 16:21:46 +01:00
|
|
|
def test_array
|
2018-04-08 17:55:17 +02:00
|
|
|
check_array [SlotLoad, NotSameCheck, SlotLoad, ResolveMethod, Label, MessageSetup ,
|
|
|
|
ArgumentTransfer, DynamicCall] , @ins
|
2018-03-15 16:21:46 +01:00
|
|
|
end
|
|
|
|
|
2017-09-12 16:49:42 +02:00
|
|
|
end
|
|
|
|
end
|