# File lib/yard/templates/helpers/base_helper.rb, line 119
    def link_object(object, title = nil)
      return title if title

      case object
      when YARD::CodeObjects::Base, YARD::CodeObjects::Proxy
        object.path
      when String, Symbol
        P(object).path
      else
        object
      end
    end