Property definitions

nitc $ ASuperExpr :: defaultinit
# A call to `super`. OR a call of a super-constructor
class ASuperExpr
	super AExpr

	# The qualifier part before the super (currenlty unused)
	var n_qualified: nullable AQualified = null is writable

	# The `super` keyword
	var n_kwsuper: TKwsuper is writable, noinit

	# The arguments of the super
	var n_args: AExprs is writable, noinit
end
src/parser/parser_nodes.nit:2480,1--2492,3