类 REXML::XPathNode

@private

属性

context[R]
raw_node[R]

公共类方法

new(node, context=nil) 点击切换源代码
# File rexml-3.4.0/lib/rexml/xpath_parser.rb, line 965
def initialize(node, context=nil)
  if node.is_a?(XPathNode)
    @raw_node = node.raw_node
  else
    @raw_node = node
  end
  @context = context || {}
end

公共实例方法

position() 点击切换源代码
# File rexml-3.4.0/lib/rexml/xpath_parser.rb, line 974
def position
  @context[:position]
end