rubyx/lib/bosl/compiler/compound_expressions.rb

17 lines
309 B
Ruby
Raw Normal View History

module Bosl
Compiler.class_eval do
# attr_reader :values
def on_array expession, context
2015-09-27 10:27:30 +02:00
raise "not implemented"
end
# attr_reader :key , :value
def on_association context
2015-09-27 10:27:30 +02:00
raise "not implemented"
end
def on_hash context
2015-09-27 10:27:30 +02:00
raise "not implemented"
end
end
end