rubyx/lib/vool/statements/local_statement.rb
2017-09-10 13:04:36 +03:00

20 lines
397 B
Ruby

module Vool
class LocalAssignment < Assignment
# used to collect frame information
def add_local( array )
array << @name
end
def to_mom( method )
if method.args_type.variable_index(@name)
type = :arguments
else
type = :frame
end
@value.slot_class.new(Mom::SlotDefinition.new(:message , [type , @name]) , @value)
end
end
end