Generate a new error message into scope

Property definitions

popcorn $ ValidationResult :: add_error
	# Generate a new error `message` into `scope`
	fun add_error(scope, message: String) do
		if not errors.has_key(scope) then
			errors[scope] = new Array[String]
		end
		errors[scope].add message
	end
lib/popcorn/pop_validation.nit:123,2--129,4