Is self a regular file and not a device file, pipe, socket, etc.?

Property definitions

core $ FileStat :: is_file
	# Is self a regular file and not a device file, pipe, socket, etc.?
	fun is_file: Bool
	do
		assert not finalized
		return stat.is_reg
	end
lib/core/file.nit:818,2--823,4