Property definitions

nitc :: parser_prod $ ACharExpr :: init_acharexpr
	init init_acharexpr (
		n_char: nullable TChar,
		n_annotations: nullable AAnnotations
	)
	do
		_n_char = n_char.as(not null)
		n_char.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:6676,2--6685,4