Add an error, show errors and quit

Because the program will quit, nothing is returned.

Property definitions

nitc $ ToolContext :: fatal_error
	# Add an error, show errors and quit
	#
	# Because the program will quit, nothing is returned.
	fun fatal_error(l: nullable Location, s: String)
	do
		error(l,s)
		check_errors
	end
src/toolcontext.nit:252,2--259,4