rubyx/lib/virtual/slots/frame_slot.rb

18 lines
337 B
Ruby
Raw Normal View History

2015-06-20 22:49:30 +02:00
module Virtual
# Slots in the Frame a re represented by instances of FrameSlot
# Slots in the Frame are local or temporary variables in a message
2015-06-20 22:49:30 +02:00
class FrameSlot < Slot
2015-09-23 17:35:37 +02:00
def initialize index , type , value = nil
super(type, value)
@index = index
2015-06-20 22:49:30 +02:00
end
def object_name
return :frame
end
2015-06-20 22:49:30 +02:00
end
end