rubyx/lib/bosl/compiler/compound_expressions.rb
Torsten Ruger 775bca50ac switching to ast::processor
using instance methods instead of context
2015-09-19 18:56:18 +03:00

17 lines
258 B
Ruby

module Bosl
Compiler.class_eval do
# attr_reader :values
def on_array expession, context
# to.do
end
# attr_reader :key , :value
def on_association context
# to.do
end
def on_hash context
# to.do
end
end
end