module Arachni::Parser::Nodes::Element::WithAttributes
Public Instance Methods
[]( name )
click to toggle source
# File lib/arachni/parser/nodes/element/with_attributes.rb, line 22 def []( name ) attributes[name] end
[]=( name, value )
click to toggle source
# File lib/arachni/parser/nodes/element/with_attributes.rb, line 26 def []=( name, value ) attributes[name] = value end
attributes()
click to toggle source
# File lib/arachni/parser/nodes/element/with_attributes.rb, line 18 def attributes @attributes ||= Attributes.new end