rubyx/lib/sof/known.rb
2014-08-14 19:48:26 +03:00

14 lines
270 B
Ruby

module Sof
class Known
@@mapping = {
Virtual::MethodDefinition => [:name , :args , :receiver , :return_type , :blocks]
}
def self.is clazz
@@mapping.has_key? clazz
end
def self.attributes clazz
@@mapping[clazz]
end
end
end