The expression used as the condition of the while

Property definitions

nitc $ AWhileExpr :: n_expr=
	# The expression used as the condition of the `while`
	var n_expr: AExpr is writable, noinit
src/parser/parser_nodes.nit:2011,2--2012,38

nitc :: parser_prod $ AWhileExpr :: n_expr=
	redef fun n_expr=(node)
	do
		_n_expr = node
		node.parent = self
	end
src/parser/parser_prod.nit:3256,2--3260,4