2017-01-14 18:28:44 +01:00
|
|
|
module Vm
|
2015-05-04 13:22:22 +02:00
|
|
|
|
2016-12-09 13:04:06 +01:00
|
|
|
module Collections
|
|
|
|
|
2015-05-04 13:22:22 +02:00
|
|
|
# attr_reader :values
|
2015-10-09 16:51:14 +02:00
|
|
|
def on_array statement, 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
|