Returns self.full_name formatted for console

Property definitions

nitc :: term_model $ MEntity :: cs_full_name
	# Returns `self.full_name` formatted for console
	fun cs_full_name(no_color: nullable Bool): String do
		if no_color == null or not no_color then
			return full_name.bold.blue
		end
		return full_name
	end
src/doc/templates/term_model.nit:62,2--68,4