Is self in its own directory?

Property definitions

nitc $ MPackage :: is_expanded
	# Is `self` in its own directory?
	fun is_expanded: Bool do
		var path = package_path
		if path == null then return false
		return not path.has_suffix(".nit")
	end
src/model/mpackage.nit:77,2--82,4