Property definitions

nitc :: term $ CmdMessage :: print_message
	fun print_message(no_color: nullable Bool) do print to_s
src/doc/term/term.nit:49,2--57

nitc :: term $ CmdError :: print_message
	redef fun print_message(no_color) do
		var res = "Error: {to_s}"
		if no_color == null or not no_color then res = res.bold.red
		print res
	end
src/doc/term/term.nit:53,2--57,4

nitc :: term $ CmdWarning :: print_message
	redef fun print_message(no_color) do
		var res = "Warning: {to_s}"
		if no_color == null or not no_color then res = res.bold.yellow
		print res
	end
src/doc/term/term.nit:61,2--65,4

nitc :: term $ ErrorMEntityNotFound :: print_message
	redef fun print_message(no_color) do
		if no_color == null or not no_color then
			print "No result found for `{mentity_name.blue}`...".bold
		else
			print "No result found for `{mentity_name}`..."
		end
		print ""
		if suggestions.not_empty then
			print "Did you mean?"
			print ""
			for s in suggestions do
				print s.cs_list_item(no_color)
				print ""
			end
		end
	end
src/doc/term/term.nit:71,2--86,4