rubyx/lib/bosl/compiler/compound_expressions.rb
Torsten Ruger c4f89441e2 cleaning
2015-09-27 11:27:30 +03:00

17 lines
309 B
Ruby

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