rubyx/lib/sof/volotile.rb
2014-08-19 22:54:28 +03:00

12 lines
212 B
Ruby

module Sof
class Volotile
@@mapping = {
Virtual::Block => [:method],
Virtual::MethodDefinition => [:current]
}
def self.attributes clazz
@@mapping[clazz] || []
end
end
end