Property definitions

nitc :: parser_prod $ AUminusExpr :: init_auminusexpr
	init init_auminusexpr (
		n_op: nullable TMinus,
		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:5010,2--5019,4