Property definitions

nitc :: parser_prod $ AExternCalls :: init_aexterncalls
	init init_aexterncalls (
		n_kwimport: nullable TKwimport,
		n_extern_calls: Collection[Object] # Should be Collection[AExternCall]
	)
	do
		_n_kwimport = n_kwimport.as(not null)
		n_kwimport.parent = self
		self.n_extern_calls.unsafe_add_all(n_extern_calls)
	end
src/parser/parser_prod.nit:8096,2--8104,4