rubyx/test/mom/assign/test_assign_local_send.rb

29 lines
878 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
2018-04-19 09:00:55 +02:00
@input = "r = 5.div4"
2018-04-06 22:37:41 +02:00
@expect = [LoadConstant, LoadConstant, SlotToReg, RegToSlot, RegToSlot,
SlotToReg, SlotToReg, RegToSlot, SlotToReg, SlotToReg,
RegToSlot, SlotToReg, RegToSlot, SlotToReg, RegToSlot,
LoadConstant, SlotToReg, RegToSlot, LoadConstant, SlotToReg,
RegToSlot, SlotToReg, LoadConstant, FunctionCall, Label,
SlotToReg, SlotToReg, RegToSlot]
end
def test_local_assign_instructions
assert_nil msg = check_nil , msg
end
2018-03-21 14:24:42 +01:00
def test_constant_load
produced = produce_body
2018-04-06 22:37:41 +02:00
load = produced.next(15)
assert_equal LoadConstant , load.class
assert_equal 5 , load.constant.value
end
end
end