The things unexpected

Property definitions

nitcc_runtime $ NError :: unexpected
	# The things unexpected
	fun unexpected: String is abstract
lib/nitcc_runtime/nitcc_runtime.nit:512,2--513,35

nitcc_runtime $ NLexerError :: unexpected
	redef fun unexpected do return "character '{text.chars.first}'"
lib/nitcc_runtime/nitcc_runtime.nit:532,2--64

nitcc_runtime $ NParserError :: unexpected
	redef fun unexpected
	do
		var res = token.node_name
		var text = token.text
		if not text.is_empty and res != "'{text}'" then
			res += " '{text.escape_to_c}'"
		end
		return res
	end
lib/nitcc_runtime/nitcc_runtime.nit:542,2--550,4