Build the read method signature

except: mreadpropdef != null expect: mtype != null

Property definitions

nitc :: modelize_property $ AAttrPropdef :: build_read_signature
	# Build the read method signature
	# `except`: mreadpropdef != null
	# `expect`: mtype != null
	fun build_read_signature
	is
		expect(mreadpropdef != null and mtype != null)
	do
		var msignature = new MSignature(new Array[MParameter], mtype)
		mreadpropdef.msignature = msignature
	end
src/modelize/modelize_property.nit:1490,2--1499,4