simple send test works again

This commit is contained in:
Torsten Ruger
2018-03-15 21:54:03 +05:30
parent 9b4fcf0e0f
commit 1def69c783
6 changed files with 33 additions and 27 deletions

View File

@ -8,22 +8,22 @@ module Vool
def setup
Risc.machine.boot
@stats = compile_first_method( "5.mod4(1,2)").first
@ins = compile_first_method( "5.mod4(1,2)")
end
def receiver
[Mom::IntegerConstant , 5]
end
def test_args_two_move
assert_equal :next_message, @stats[1].arguments[1].left.slots[0]
assert_equal :arguments, @stats[1].arguments[1].left.slots[1]
assert_equal :next_message, @ins.next(2).arguments[1].left.slots[0]
assert_equal :arguments, @ins.next(2).arguments[1].left.slots[1]
end
def test_args_two_str
assert_equal Mom::IntegerConstant, @stats[1].arguments[1].right.class
assert_equal 2, @stats[1].arguments[1].right.value
assert_equal Mom::IntegerConstant, @ins.next(2).arguments[1].right.class
assert_equal 2, @ins.next(2).arguments[1].right.value
end
def test_array
check_array [MessageSetup,ArgumentTransfer,SimpleCall] , @stats
check_array [Mom::MessageSetup,Mom::SlotLoad,Mom::ArgumentTransfer,Mom::SimpleCall] , @ins
end
end
end