rubyx/lib/sof/known.rb

14 lines
261 B
Ruby

module Sof
class Known
@@mapping = {
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