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