Property definitions

nitc :: parser_prod $ ALabel :: init_alabel
	init init_alabel (
		n_kwlabel: nullable TKwlabel,
		n_id: nullable TId
	)
	do
		_n_kwlabel = n_kwlabel.as(not null)
		n_kwlabel.parent = self
		_n_id = n_id
		if n_id != null then n_id.parent = self
	end
src/parser/parser_prod.nit:2572,2--2581,4