Property definitions

nitc :: parser_prod $ AStringExpr :: init_astringexpr
	init init_astringexpr (
		n_string: nullable TString,
		n_annotations: nullable AAnnotations
	)
	do
		_n_string = n_string.as(not null)
		n_string.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6718,2--6727,4