Property definitions

nitc :: parser_prod $ AStdImport :: init_astdimport
	init init_astdimport (
		n_visibility: nullable AVisibility,
		n_kwimport: nullable TKwimport,
		n_name: nullable AModuleName,
		n_annotations: nullable AAnnotations
	)
	do
		_n_visibility = n_visibility.as(not null)
		n_visibility.parent = self
		_n_kwimport = n_kwimport.as(not null)
		n_kwimport.parent = self
		_n_name = n_name.as(not null)
		n_name.parent = self
		_n_annotations = n_annotations
		if n_annotations != null then n_annotations.parent = self
	end
src/parser/parser_prod.nit:145,2--160,4