Property definitions

nitc $ AWithExpr :: defaultinit
# A `with` statement
class AWithExpr
	super AExpr
	super ALabelable

	# The `with` keyword
	var n_kwwith: TKwwith is writable, noinit

	# The expression used to get the value to control
	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:2068,1--2084,3