Property definitions

nitc :: parser_prod $ AFloatExpr :: init_afloatexpr
	init init_afloatexpr (
		n_float: nullable TFloat,
		n_annotations: nullable AAnnotations
	)
	do
		_n_float = n_float.as(not null)
		n_float.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6634,2--6643,4