rubyx/lib/virtual/slots/frame_slot.rb
Torsten Ruger bd77db656a remove class_eval on slots to map registers
Use their class names (or for now called object names)
these are the same that Register helper functions accept already anyway
2015-06-30 09:39:45 +03:00

17 lines
304 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 type = Unknown, value = nil
super
end
def object_name
return :frame
end
end
end