rubyx/lib/virtual/reference.rb

20 lines
303 B
Ruby
Raw Normal View History

require_relative "value"
module Virtual
2014-06-30 13:56:58 +02:00
class Reference < Value
def initialize clazz = nil
@clazz = clazz
end
attr_accessor :clazz
2014-06-24 18:34:36 +02:00
def at_index block , left , right
block.ldr( self , left , right )
self
end
2014-07-14 13:06:09 +02:00
end
class SelfReference < Reference
end
end