# File lib/yard/code_objects/method_object.rb, line 110
    def is_attribute?
      return false unless info = attr_info
      info[name.to_s =~ /=$/ ? :write : :read] ? true : false
    end