rubyx/lib/virtual/slots/frame_slot.rb
Torsten Ruger 9ca5ddf7c0 fix all tests
some had to be disabled
since stability is coming back more test are coming too
2015-07-02 10:26:48 +03:00

18 lines
346 B
Ruby

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
class FrameSlot < Slot
def initialize index , type = Unknown, value = nil
super(type, value)
@index = index
end
def object_name
return :frame
end
end
end