Set self as optional

Property definitions

nitc :: modelize_property $ AAttrPropdef :: define_as_optional
	# Set `self` as optional
	fun define_as_optional: AAttrPropdef
	is
		expect(has_value)
	do
		is_optional = true
		return self
	end
src/modelize/modelize_property.nit:1549,2--1556,4