rubyx/lib/virtual/reference.rb
Torsten Ruger 1e866ae0ae minor
2014-06-30 14:56:58 +03:00

16 lines
230 B
Ruby

module Vm
class Reference < Value
def initialize clazz = nil
@clazz = clazz
end
attr_accessor :clazz
def at_index block , left , right
block.ldr( self , left , right )
self
end
end
end