rubyx/lib/virtual/slots/frame_slot.rb

13 lines
263 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 varialbes in a message
class FrameSlot < Slot
def initialize index , type = Unknown, value = nil
super
end
end
end