rubyx/lib/virtual/reference.rb

16 lines
230 B
Ruby
Raw Normal View History

module Vm
2014-06-30 14:56:58 +03:00
class Reference < Value
def initialize clazz = nil
@clazz = clazz
end
attr_accessor :clazz
2014-06-24 19:34:36 +03:00
def at_index block , left , right
block.ldr( self , left , right )
self
end
end
end