Property definitions

nitc $ ALabel :: defaultinit
# A label at the end of a block or in a break/continue statement. eg `label x`
class ALabel
	super Prod

	# The `label` keyword
	var n_kwlabel: TKwlabel is writable, noinit

	# The name of the label, if any
	var n_id: nullable TId is writable, noinit
end
src/parser/parser_nodes.nit:1829,1--1838,3