Property definitions

curl $ NativeCurlCallbacks :: stream_callback
	fun stream_callback(buffer: String) do end
lib/curl/native_curl.nit:266,2--43

curl $ MyHttpFetcher :: stream_callback
	redef fun stream_callback(buffer) do print "Stream_callback: {buffer}"
lib/curl/examples/curl_http.nit:36,2--71

curl $ CurlFileResponseSuccess :: stream_callback
	# Receive bytes stream from request due to stream callback registering
	redef fun stream_callback(buffer)
	do
		file.write buffer
	end
lib/curl/curl.nit:594,2--598,4