diff options
author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
---|---|---|
committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/Error.pmod | |
parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
download | pygments-master.tar.gz |
Diffstat (limited to 'tests/examplefiles/Error.pmod')
-rw-r--r-- | tests/examplefiles/Error.pmod | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/examplefiles/Error.pmod b/tests/examplefiles/Error.pmod deleted file mode 100644 index 808ecb0e..00000000 --- a/tests/examplefiles/Error.pmod +++ /dev/null @@ -1,38 +0,0 @@ -#pike __REAL_VERSION__ - -constant Generic = __builtin.GenericError; - -constant Index = __builtin.IndexError; - -constant BadArgument = __builtin.BadArgumentError; - -constant Math = __builtin.MathError; - -constant Resource = __builtin.ResourceError; - -constant Permission = __builtin.PermissionError; - -constant Decode = __builtin.DecodeError; - -constant Cpp = __builtin.CppError; - -constant Compilation = __builtin.CompilationError; - -constant MasterLoad = __builtin.MasterLoadError; - -constant ModuleLoad = __builtin.ModuleLoadError; - -//! Returns an Error object for any argument it receives. If the -//! argument already is an Error object or is empty, it does nothing. -object mkerror(mixed error) -{ - if (error == UNDEFINED) - return error; - if (objectp(error) && error->is_generic_error) - return error; - if (arrayp(error)) - return Error.Generic(@error); - if (stringp(error)) - return Error.Generic(error); - return Error.Generic(sprintf("%O", error)); -}
\ No newline at end of file |