Property definitions

nitc $ ABlockExpr :: defaultinit
# A sequence of `AExpr` (usually statements)
# The last `AExpr` gives the value of the whole block
class ABlockExpr
	super AExpr

	# The list of statements in the bloc.
	# The last element is often considered as an expression that give the value of the whole block.
	var n_expr = new ANodes[AExpr](self)

	# The `end` keyword
	var n_kwend: nullable TKwend = null is writable
end
src/parser/parser_nodes.nit:1846,1--1857,3