Property definitions

nitc :: parser_prod $ AParam :: init_aparam
	init init_aparam (
		n_id: nullable TId,
		n_type: nullable AType,
		n_dotdotdot: nullable TDotdotdot,
		n_annotations: nullable AAnnotations
	)
	do
		_n_id = n_id.as(not null)
		n_id.parent = self
		_n_type = n_type
		if n_type != null then n_type.parent = self
		_n_dotdotdot = n_dotdotdot
		if n_dotdotdot != null then n_dotdotdot.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:2419,2--2434,4