Options parsing errors.

Property definitions

opts $ OptionContext :: errors
	# Options parsing errors.
	fun errors: Array[String]
	do
		var errors = new Array[String]
		errors.add_all context_errors
		for o in options do
			for e in o.errors do
				errors.add(e)
			end
		end
		return errors
	end
lib/opts/opts.nit:394,2--405,4