abstract CallStatement base class, just like in ruby

to_mom differs much more than the to_vool in ruby,
but data and base functionality still warrent unification
also we can check for CallStatement now
This commit is contained in:
Torsten Ruger
2018-07-30 14:45:37 +03:00
parent 198a43cc8d
commit 1d2ec8e8ac
4 changed files with 46 additions and 54 deletions

View File

@ -9,13 +9,8 @@ module Vool
#
# As cache key we must use the type of the object (which is the first word of _every_ object)
# as that is constant, and function implementations depend on the type (not class)
class SendStatement < Statement
attr_reader :name , :receiver , :arguments , :block
def initialize(name , receiver , arguments )
@name , @receiver , @arguments = name , receiver , arguments
@arguments ||= []
end
class SendStatement < CallStatement
attr_reader :block
def block
return nil if arguments.empty?
@ -27,15 +22,8 @@ module Vool
@arguments << block
end
def to_s
"#{receiver}.#{name}(#{arguments.join(', ')})"
end
def each(&block)
block.call(self)
block.call(@receiver)
@arguments.each do |arg|
block.call(arg)
end
super
self.block.each(&block) if self.block
end
@ -56,12 +44,6 @@ module Vool
end
end
# When used as right hand side, this tells what data to move to get the result into
# a varaible. It is (off course) the return value of the message
def slot_definition(compiler)
Mom::SlotDefinition.new(:message ,[ :return_value])
end
def message_setup(compiler,called_method)
setup = Mom::MessageSetup.new( called_method )
mom_receive = @receiver.slot_definition(compiler)