# File lib/nanoc/base/compilation/dependency_tracker.rb, line 135
    def record_dependency(src, dst)
      # Warning! dst and src are *reversed* here!
      @graph.add_edge(dst, src) unless src == dst
    end