rubyx/lib/soml/compiler/collections.rb
2015-10-23 14:22:55 +03:00

14 lines
219 B
Ruby

module Soml
Compiler.class_eval do
# 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