finishes local assignments to_mom

This commit is contained in:
Torsten Ruger
2017-04-12 14:45:02 +03:00
parent 9c499c7a19
commit 21e426be71
3 changed files with 63 additions and 3 deletions

View File

@ -6,6 +6,7 @@ module Vool
def setup
Risc.machine.boot
@method = compile_first_method( "a = 5")
end
def compile_first_method input
@ -17,8 +18,25 @@ module Vool
end
def test_class_compiles
meth = compile_first_method( "a = 5")
assert_equal Mom::SlotLoad , meth.first.class , meth
assert_equal Mom::SlotConstant , @method.first.class , @method
end
def test_slot_is_set
assert @method.first.left
end
def test_slot_starts_at_message
assert_equal :message , @method.first.left[0]
end
def test_slot_gets_self
assert_equal :self , @method.first.left[1]
end
def test_slot_assigns_to_local
assert_equal :a , @method.first.left[-1]
end
def test_slot_assigns_something
assert @method.first.right
end
def test_slot_assigns_int
assert_equal IntegerStatement , @method.first.right.class
end
end
end