Property definitions

nitc $ ANotExpr :: defaultinit
# A `not` expression
class ANotExpr
	super ABoolExpr

	# The `not` keyword
	var n_kwnot: TKwnot is writable, noinit

	# The boolean operand of the `not`
	var n_expr: AExpr is writable, noinit
end
src/parser/parser_nodes.nit:2204,1--2213,3