Property definitions

nitc $ AVardeclExpr :: defaultinit
# A declaration of a local variable. eg `var x: X = y`
class AVardeclExpr
	super AExpr

	# The `var` keyword
	var n_kwvar: nullable TKwvar = null is writable

	# The name of the local variable
	var n_id: TId is writable, noinit

	# The declaration type of the local variable
	var n_type: nullable AType = null is writable

	# The `=` symbol (for the initial value)
	var n_assign: nullable TAssign = null is writable

	# The initial value, if any
	var n_expr: nullable AExpr = null is writable
end
src/parser/parser_nodes.nit:1859,1--1877,3