Property definitions

nitc :: parser_prod $ ANotExpr :: init_anotexpr
	init init_anotexpr (
		n_kwnot: nullable TKwnot,
		n_expr: nullable AExpr
	)
	do
		_n_kwnot = n_kwnot.as(not null)
		n_kwnot.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
	end
src/parser/parser_prod.nit:3923,2--3932,4