Read the content of a dynamic ext including the length on len_len bytes

Property definitions

msgpack :: read $ Reader :: read_msgpack_ext_data
	# Read the content of a dynamic *ext* including the length on `len_len` bytes
	private fun read_msgpack_ext_data(len_len: Int): MsgPackExt
	do
		var len = read_bytes(len_len).to_i
		return read_msgpack_fixext_data(len)
	end
lib/msgpack/read.nit:188,2--193,4