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-06-29 09:55:22 +02:00
|
|
|
def initialize type = Unknown, value = nil
|
2015-06-20 22:49:30 +02:00
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|