# File lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb, line 91
      def reverse_each
        return enum_for(:reverse_each) unless block_given?
        action = @current_action
        loop do
          break unless action
          yield action
          action = action.previous
        end
        self
      end