class Protocol::HTTP::Reference

def dup(path = nil, parameters = nil, merge_parameters = true)

The arguments to this function are legacy, prefer to use `with`.
def dup(path = nil, parameters = nil, merge_parameters = true)
	if merge_parameters
		with(path: path, parameters: parameters)
	else
		self.base.with(path: path, parameters: parameters)
	end
end