implements self sent

with explicit and implicit self
This commit is contained in:
Torsten Ruger 2017-04-25 09:40:09 +03:00
parent 47683817ee
commit bbc13946ed
3 changed files with 61 additions and 1 deletions

View File

@ -33,6 +33,14 @@ module Vool
end end
end end
class SelfStatement < Statement class SelfStatement < Statement
attr_reader :clazz
def set_class(clazz)
@clazz = clazz
end
def ct_type
@clazz.instance_type
end
end end
class SuperStatement < Statement class SuperStatement < Statement
end end

View File

@ -56,7 +56,8 @@ module Vool
def simple_call def simple_call
type = @receiver.ct_type type = @receiver.ct_type
method = type.get_method(@name) method = type.resolve_method(@name)
raise "No method #{@name} for #{type}" unless method
[Mom::SimpleCall.new( method) ] [Mom::SimpleCall.new( method) ]
end end

View File

@ -0,0 +1,51 @@
require_relative "../helper"
module Vool
class TestSendSelfMom < MiniTest::Test
include MomCompile
def setup
Risc.machine.boot
@stats = compile_first_method( "self.get_internal_word(0)").first
end
def test_class_compiles
assert_equal Mom::SlotConstant , @stats.first.class , @stats
end
def test_slot_is_set
assert @stats.first.left
end
def test_two_instructions_are_returned
assert_equal 3 , @stats.length
end
def test_receiver_move_class
assert_equal Mom::SlotConstant, @stats.first.class
end
def test_receiver_move
assert_equal :receiver, @stats.first.left[2]
end
def test_receiver
assert_equal SelfStatement, @stats.first.right.class
assert_equal :Test, @stats.first.right.clazz.name
end
def test_arg_one
assert_equal Mom::SlotConstant, @stats[1].class
end
def test_call_two
assert_equal Mom::SimpleCall, @stats[2].class
end
def test_call_has_method
assert_equal Parfait::TypedMethod, @stats[2].method.class
end
def test_call_has_right_method
assert_equal :get_internal_word, @stats[2].method.name
end
end
class TestSendSelfImplicitMom < TestSendSelfMom
def setup
Risc.machine.boot
@stats = compile_first_method( "get_internal_word(0)").first
end
end
end