rubyx/test/mom/assign/test_assign_local_send.rb

30 lines
781 B
Ruby
Raw Normal View History

2018-03-19 11:58:53 +01:00
require_relative '../helper'
module Risc
class TestAssignLocalSend < MiniTest::Test
include Statements
def setup
super
@input = "r = 5.mod4"
@expect = [LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg, SlotToReg ,
RegToSlot, LoadConstant, SlotToReg, SlotToReg, RegToSlot, LoadConstant ,
SlotToReg, RegToSlot, Label, SlotToReg, SlotToReg, RegToSlot]
end
def test_local_assign_instructions
assert_nil msg = check_nil , msg
end
def ttest_constant_load
produced = produce_body
assert_equal 5 , produced.constant.known_object.value
end
def ttest_slot_move
produced = produce_body
assert_equal produced.next.register , produced.register
end
end
end