The path to self ini file

Property definitions

nitc $ MPackage :: ini_path
	# The path to `self` ini file
	fun ini_path: nullable String do
		var path = package_path
		if path == null then return null
		if is_expanded then return path / "package.ini"
		return path.dirname / "{name}.ini"
	end
src/model/mpackage.nit:84,2--90,4