18 lines
337 B
Ruby
18 lines
337 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 , value = nil
|
|
super(type, value)
|
|
@index = index
|
|
end
|
|
|
|
def object_name
|
|
return :frame
|
|
end
|
|
end
|
|
|
|
end
|