class Bundler::PubGrub::FailureWriter

def initialize(root)

def initialize(root)
  @root = root
  # { Incompatibility => Integer }
  @derivations = {}
  # [ [ String, Integer or nil ] ]
  @lines = []
  # { Incompatibility => Integer }
  @line_numbers = {}
  count_derivations(root)
end