# File lib/yard/code_objects/proxy.rb, line 89
      def path
        if obj = to_obj
          obj.path
        else
          if @namespace.root?
            (@imethod ? ISEP : "") + name.to_s
          elsif @origname
            if @origname =~ /^[A-Z]/
              @origname
            else
              [namespace.path, @origname].join
            end
          elsif name.to_s =~ /^[A-Z]/ # const
            name.to_s
          else # class meth?
            [namespace.path, name.to_s].join(CSEP)
          end
        end
      end