Does self have a ini file?

Property definitions

nitc $ MPackage :: has_ini
	# Does `self` have a ini file?
	fun has_ini: Bool do
		var ini_path = self.ini_path
		if ini_path == null then return false
		return ini_path.file_exists
	end
src/model/mpackage.nit:92,2--97,4