# File lib/anise/annotative/methods.rb, line 76 def annotator(name, &block) if name.to_s.start_with?('@') if defined?(super) super(name, &block) else raise ArgumentError, "not a valid method name -- #{name}" end else method_annotator(name, &block) end end