nitc :: MPackage :: is_expanded
self
in its own directory?
# 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