Property definitions

neo4j $ JsonDELETE :: defaultinit
# HTTP DELETE command
class JsonDELETE
	super JsonCurlRequest

	redef fun execute_hook do
		var err = self.curl.native.easy_setopt(new CURLOption.custom_request, "DELETE")
		if not err.is_ok then return answer_failure(err.to_i, err.to_s)
		return null
	end
end
lib/neo4j/curl_json.nit:130,1--139,3