Property definitions

libevent $ TestConnectionFactory :: defaultinit
class TestConnectionFactory
	super ConnectionFactory

	redef fun spawn_connection(buf, address)
	do
		print "[Server] New client: {address}"

		var conn = new TestConnection(buf)
		print "[Server] Write: Hi"
		conn.write "Hi\n"
		return conn
	end
end
lib/libevent/libevent_test.nit:33,1--45,3