rubyx/lib/vm/method_compiler/collections.rb
2017-01-14 19:28:44 +02:00

15 lines
218 B
Ruby

module Vm
module Collections
# attr_reader :values
def on_array statement, context
end
# attr_reader :key , :value
def on_association context
end
def on_hash context
end
end
end