The path of the module source, if any

safe alias to location.file.filepath

Property definitions

nitc $ MModule :: filepath
	# The path of the module source, if any
	#
	# safe alias to `location.file.filepath`
	fun filepath: nullable String do
		var res = self.location.file
		if res == null then return null
		return res.filename
	end
src/model/mmodule.nit:83,2--90,4