Property definitions

nitc :: parser_prod $ AStarstarExpr :: init_astarstarexpr
	init init_astarstarexpr (
		n_expr: nullable AExpr,
		n_op: nullable TStarstar,
		n_expr2: nullable AExpr
	)
	do
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_op = n_op.as(not null)
		n_op.parent = self
		_n_expr2 = n_expr2.as(not null)
		n_expr2.parent = self
	end
src/parser/parser_prod.nit:4680,2--4692,4