Property definitions

nitc :: parser_prod $ AUtildeExpr :: init_autildeexpr
	init init_autildeexpr (
		n_op: nullable TTilde,
		n_expr: nullable AExpr
	)
	do
		_n_op = n_op.as(not null)
		n_op.parent = self
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
	end
src/parser/parser_prod.nit:5094,2--5103,4