class Protocol::HTTP2::Dependency

def print_hierarchy(output = $stderr, indent: 0)

def print_hierarchy(output = $stderr, indent: 0)
	output.puts "#{"\t" * indent}#{self.inspect}"
	@children&.each_value do |child|
		child.print_hierarchy(output, indent: indent+1)
	end
end