2015-05-08 14:10:30 +02:00
|
|
|
module Virtual
|
|
|
|
module Compiler
|
2015-05-04 13:22:22 +02:00
|
|
|
|
|
|
|
# attr_reader :values
|
2015-05-04 22:03:52 +02:00
|
|
|
def self.compile_array expession, context
|
2015-05-04 13:22:22 +02:00
|
|
|
to.do
|
|
|
|
end
|
|
|
|
# attr_reader :key , :value
|
2015-05-04 22:03:52 +02:00
|
|
|
def self.compile_association context
|
2015-05-04 13:22:22 +02:00
|
|
|
to.do
|
|
|
|
end
|
2015-05-04 22:03:52 +02:00
|
|
|
def self.compile_hash context
|
2015-05-04 13:22:22 +02:00
|
|
|
to.do
|
|
|
|
end
|
2015-05-08 14:10:30 +02:00
|
|
|
end
|
2015-05-04 13:22:22 +02:00
|
|
|
end
|