jamesmoriarty/call-graph

View on GitHub
lib/call_graph/printers/dot/line.rb

Summary

Maintainability
A
0 mins
Test Coverage
module CallGraph
  module Printers
    class Dot
      class Line
        attr_reader :caller, :receiver, :attributes

        def initialize(caller, receiver, attributes = {})
          @caller     = caller
          @receiver   = receiver
          @attributes = attributes
        end
      end
    end
  end
end