class Seahorse::Client::HandlerList

def each(&block)

Yields the handlers in stack order, which is reverse priority.
def each(&block)
  entries.sort.each do |entry|
    yield(entry.handler_class) if entry.operations.empty?
  end
end