# File lib/xml/dom/core.rb, line 2523
      def _getMyLocation(parent)
        index = 1
        parent.childNodes do |child|
          if child == self
            return "child(#{index},#text)"
          end
          if child.nodeType == TEXT_NODE
            index += 1
          end
        end
        nil
      end