Property definitions

nitc :: parser_prod $ AIntegerExpr :: init_aintegerexpr
	init init_aintegerexpr (
		n_integer: nullable TInteger,
		n_annotations: nullable AAnnotations
	)
	do
		_n_integer = n_integer.as(not null)
		n_integer.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6592,2--6601,4