# File lib/anise/annotative/attributes.rb, line 86
      def instance_attributes
        a = []
        ancestors.each do |anc|
          next unless anc < Attributes
          if x = anc.instance_attributes!
            a |= x
          end
        end
        return a
      end