2015-09-19 15:28:41 +02:00
|
|
|
module Bosl
|
2015-09-19 17:56:18 +02:00
|
|
|
Compiler.class_eval do
|
2015-05-04 13:22:22 +02:00
|
|
|
|
|
|
|
# attr_reader :values
|
2015-09-19 17:56:18 +02:00
|
|
|
def on_array expession, context
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|
|
|
|
# attr_reader :key , :value
|
2015-09-19 17:56:18 +02:00
|
|
|
def on_association context
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|
2015-09-19 17:56:18 +02:00
|
|
|
def on_hash context
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|