Property definitions

nitc :: parser_prod $ ASafeExpr :: init_asafeexpr
	init init_asafeexpr (
		n_expr: nullable AExpr,
		n_quest: nullable TQuest
	)
	do
		_n_expr = n_expr.as(not null)
		n_expr.parent = self
		_n_quest = n_quest.as(not null)
		n_quest.parent = self
	end
src/parser/parser_prod.nit:7411,2--7420,4