Does self have a manpage?

Property definitions

nitc :: nitpackage $ MModule :: has_man
	# Does `self` have a manpage?
	private fun has_man: Bool do
		var man_path = self.man_path
		if man_path == null then return false
		return man_path.file_exists
	end
src/nitpackage.nit:459,2--464,4