File: C:/Ruby27-x64/lib/ruby/gems/2.7.0/gems/nokogiri-1.13.10-x64-mingw32/lib/nokogiri/xml/xpath.rb
# frozen_string_literal: true
module Nokogiri
module XML
module XPath
# The XPath search prefix to search globally, +//+
GLOBAL_SEARCH_PREFIX = "//"
# The XPath search prefix to search direct descendants of the root element, +/+
ROOT_SEARCH_PREFIX = "/"
# The XPath search prefix to search direct descendants of the current element, +./+
CURRENT_SEARCH_PREFIX = "./"
# The XPath search prefix to search anywhere in the current element's subtree, +.//+
SUBTREE_SEARCH_PREFIX = ".//"
end
end
end
require_relative "xpath/syntax_error"