2015-06-20 22:49:30 +02:00
|
|
|
module Virtual
|
|
|
|
|
|
|
|
# Slots in the Frame a re represented by instances of FrameSlot
|
|
|
|
|
2015-06-29 09:55:22 +02:00
|
|
|
# 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
|
2015-07-02 09:26:48 +02:00
|
|
|
super(type, value)
|
|
|
|
@index = index
|
2015-06-20 22:49:30 +02:00
|
|
|
end
|
2015-06-30 08:39:45 +02:00
|
|
|
|
|
|
|
def object_name
|
|
|
|
return :frame
|
|
|
|
end
|
2015-06-20 22:49:30 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|