Class: REXML::XPathNode
- Inherits:
-
Object
- Object
- REXML::XPathNode
- Defined in:
- lib/rexml/xpath_parser.rb
Instance Attribute Summary collapse
-
#context ⇒ Object
readonly
Returns the value of attribute context.
-
#raw_node ⇒ Object
readonly
Returns the value of attribute raw_node.
Instance Method Summary collapse
-
#initialize(node, context = nil) ⇒ XPathNode
constructor
A new instance of XPathNode.
- #position ⇒ Object
Constructor Details
#initialize(node, context = nil) ⇒ XPathNode
Returns a new instance of XPathNode.
967 968 969 970 971 972 973 974 |
# File 'lib/rexml/xpath_parser.rb', line 967 def initialize(node, context=nil) if node.is_a?(XPathNode) @raw_node = node.raw_node else @raw_node = node end @context = context || {} end |
Instance Attribute Details
#context ⇒ Object (readonly)
Returns the value of attribute context.
966 967 968 |
# File 'lib/rexml/xpath_parser.rb', line 966 def context @context end |
#raw_node ⇒ Object (readonly)
Returns the value of attribute raw_node.
966 967 968 |
# File 'lib/rexml/xpath_parser.rb', line 966 def raw_node @raw_node end |
Instance Method Details
#position ⇒ Object
976 977 978 |
# File 'lib/rexml/xpath_parser.rb', line 976 def position @context[:position] end |