Property definitions

nitc $ ADoExpr :: defaultinit
# A `do` statement
class ADoExpr
	super AExpr
	super ALabelable

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

	# The list of statements of the `do`.
	var n_block: nullable AExpr = null is writable

	# The `catch` keyword
	var n_kwcatch: nullable TKwcatch = null is writable

	# The do catch block
	var n_catch: nullable AExpr = null is writable
end
src/parser/parser_nodes.nit:1939,1--1955,3