Property definitions

nitc :: parser_prod $ ACallReassignExpr :: init_acallreassignexpr
	init init_acallreassignexpr (
		n_expr: nullable AExpr,
		n_qid: nullable AQid,
		n_args: nullable AExprs,
		n_assign_op: nullable AAssignOp,
		n_value: nullable AExpr
	)
	do
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_qid = n_qid.as(not null)
		n_qid.parent = self
		_n_args = n_args.as(not null)
		n_args.parent = self
		_n_assign_op = n_assign_op.as(not null)
		n_assign_op.parent = self
		_n_value = n_value.as(not null)
		n_value.parent = self
	end
src/parser/parser_prod.nit:5586,2--5604,4