Sha256: 23fdc8ce0d4e8a6eeacb2994dc1dfa9745e0ef69a71f0aceec1d5617b74d6cdc

Contents?: true

Size: 597 Bytes

Versions: 472

Compression:

Stored size: 597 Bytes

Contents

# 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"

Version data entries

472 entries across 469 versions & 12 rubygems

Version Path
nokogiri-1.13.1-arm64-darwin lib/nokogiri/xml/xpath.rb
nokogiri-1.13.1-aarch64-linux lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0 lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x86_64-linux lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x86_64-darwin lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x86-mingw32 lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x86-linux lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x64-mingw32 lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-x64-mingw-ucrt lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-java lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-arm64-darwin lib/nokogiri/xml/xpath.rb
nokogiri-1.13.0-aarch64-linux lib/nokogiri/xml/xpath.rb