Get the errors for scope

Property definitions

popcorn $ ValidationResult :: error
	# Get the errors for `scope`
	fun error(scope: String): Array[String] do
		if not errors.has_key(scope) then
			return new Array[String]
		end
		return errors[scope]
	end
lib/popcorn/pop_validation.nit:131,2--137,4