Module: Ronin::Recon::OutputFormats::GraphFormat

Included in:
Dot, GraphvizFormat
Defined in:
lib/ronin/recon/output_formats/graph_format.rb

Overview

Indicates that an output format can contain graph information.

Instance Method Summary collapse

Instance Method Details

#[]=(value, parent) ⇒ self

This method is abstract.

Appends a value and it's parent value to the GraphViz DOT output stream.

Parameters:

  • value (Value)

    The value to append.

  • parent (Value)

    The parent value of the given value.

Returns:

  • (self)

Raises:

  • (NotImplementedError)


42
43
44
# File 'lib/ronin/recon/output_formats/graph_format.rb', line 42

def []=(value,parent)
  raise(NotImplementedError,"#{self.class}#[]= was not implemented")
end