Module: NewRelic::Security::Instrumentation::Nokogiri::XML::Node::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
9 10 11 12 13 |
# File 'lib/newrelic_security/instrumentation-security/nokogiri/prepend.rb', line 9 def xpath(*var) retval = nil event = xpath_on_enter(*var) { retval = super } xpath_on_exit(event) { return retval } end |