Property definitions

nitc :: parser_prod $ ABlockExpr :: init_ablockexpr
	init init_ablockexpr (
		n_expr: Collection[Object], # Should be Collection[AExpr]
		n_kwend: nullable TKwend
	)
	do
		self.n_expr.unsafe_add_all(n_expr)
		_n_kwend = n_kwend
		if n_kwend != null then n_kwend.parent = self
	end
src/parser/parser_prod.nit:2614,2--2622,4