9ca5ddf7c0
some had to be disabled since stability is coming back more test are coming too
18 lines
346 B
Ruby
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
|