Fire a warning with the specified message and cause.

Property definitions

saxophonit $ XophonReaderModel :: fire_warning
	# Fire a warning with the specified message and cause.
	fun fire_warning(message: String, cause: nullable Error) do
		var e = exception(message, cause)

		if error_handler != null then
			error_handler.warning(e)
		end
	end
lib/saxophonit/reader_model.nit:338,2--345,4