Property definitions

nitc $ AWhileExpr :: defaultinit
# A `while` statement
class AWhileExpr
	super AExpr
	super ALabelable

	# The `while` keyword
	var n_kwwhile:  TKwwhile is writable, noinit

	# The expression used as the condition of the `while`
	var n_expr: AExpr is writable, noinit

	# The `do` keyword
	var n_kwdo: TKwdo is writable, noinit

	# The body of the loop
	var n_block: nullable AExpr = null is writable
end
src/parser/parser_nodes.nit:2003,1--2019,3