rubyx/lib/phisol/compiler/collections.rb
2015-10-09 17:51:14 +03:00

14 lines
221 B
Ruby

module Phisol
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