Property definitions

nitc :: parser_prod $ ASelfExpr :: init_aselfexpr
	init init_aselfexpr (
		n_kwself: nullable TKwself,
		n_annotations: nullable AAnnotations
	)
	do
		_n_kwself = n_kwself.as(not null)
		n_kwself.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6409,2--6418,4