rubyx/lib/vool/statements/ivar_statement.rb
2017-09-10 13:33:32 +03:00

26 lines
467 B
Ruby

module Vool
class Assignment < Statement
attr_reader :name , :value
def initialize(name , value )
@name , @value = name , value
end
def collect(arr)
@value.collect(arr)
super
end
end
class IvarAssignment < Assignment
# used to collect type information
def add_ivar( array )
array << @name
end
def to_mom( method )
@value.slot_class.new([:message , :self , @name] , @value)
end
end
end