Module: NewRelic::Security::Instrumentation::Nokogiri::XML::NodeSet::Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/nokogiri/prepend.rb
Instance Method Summary collapse
Methods included from NewRelic::Security::Instrumentation::Nokogiri::XML
#xpath_on_enter, #xpath_on_exit
Instance Method Details
#xpath(*var) ⇒ Object
21 22 23 24 25 |
# File 'lib/newrelic_security/instrumentation-security/nokogiri/prepend.rb', line 21 def xpath(*var) retval = nil event = xpath_on_enter(*var) { retval = super } xpath_on_exit(event) { return retval } end |