set up ivar_assignment correctly

for statement tests
and write mom tests
also implement to_mom
and fix local (self) bug
This commit is contained in:
Torsten Ruger
2017-04-12 20:29:45 +03:00
parent 87133722b3
commit be10e8c6af
10 changed files with 62 additions and 17 deletions

View File

@ -1 +1,14 @@
require_relative "../helper"
module MomCompile
include CompilerHelper
def compile_first_method input
lst = Vool::VoolCompiler.compile as_main( input )
assert_equal Parfait::Class , lst.clazz.class , input
method = lst.clazz.get_method(:main)
assert method
lst.to_mom( nil ).first
end
end

View File

@ -1,3 +1,3 @@
require_relative "helper"
require_relative "test_local"
require_relative "test_ivar_assignment"
require_relative "test_ivar"

View File

@ -0,0 +1,34 @@
require_relative "helper"
module Vool
class TestIvarMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
@method = compile_first_method( "@a = 5")
end
def test_class_compiles
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

View File

@ -2,21 +2,13 @@ require_relative "helper"
module Vool
class TestLocalMom < MiniTest::Test
include CompilerHelper
include MomCompile
def setup
Risc.machine.boot
@method = compile_first_method( "a = 5")
end
def compile_first_method input
lst = VoolCompiler.compile as_main( input )
assert_equal Parfait::Class , lst.clazz.class , input
method = lst.clazz.get_method(:main)
assert method
lst.to_mom( nil ).first
end
def test_class_compiles
assert_equal Mom::SlotConstant , @method.first.class , @method
end
@ -27,7 +19,7 @@ module Vool
assert_equal :message , @method.first.left[0]
end
def test_slot_gets_self
assert_equal :self , @method.first.left[1]
assert_equal :frame , @method.first.left[1]
end
def test_slot_assigns_to_local
assert_equal :a , @method.first.left[-1]