rubyx/test/mom/assign/test_assign_local_send.rb

27 lines
752 B
Ruby
Raw Normal View History

2018-03-19 16:28:53 +05:30
require_relative '../helper'
module Risc
class TestAssignLocalSend < MiniTest::Test
include Statements
def setup
super
2018-04-19 10:00:55 +03:00
@input = "r = 5.div4"
@expect = [LoadConstant, LoadConstant, SlotToReg, SlotToReg, RegToSlot,
RegToSlot, RegToSlot, RegToSlot, LoadConstant, SlotToReg,
RegToSlot, LoadConstant, SlotToReg, RegToSlot, SlotToReg,
FunctionCall, Label, SlotToReg, SlotToReg, RegToSlot]
end
def test_local_assign_instructions
assert_nil msg = check_nil , msg
end
2018-03-21 18:54:42 +05:30
def test_constant_load
produced = produce_body
load = produced.next(8)
2018-04-06 23:37:41 +03:00
assert_equal LoadConstant , load.class
assert_equal 5 , load.constant.value
end
end
end