Home
last modified time | relevance | path

Searched refs:URIError (Results 1 – 25 of 55) sorted by relevance

123

/third_party/jerryscript/tests/jerry/
Derror.js181 e = new URIError ();
186 e = new URIError("some message");
196 assert (URIError.prototype.toString === Error.prototype.toString);
197 assert (URIError.prototype.constructor === URIError);
198 assert (URIError.prototype.name === "URIError");
199 assert (URIError.prototype.message === "");
200 assert (URIError.prototype.toString() === "URIError");
Dglobal-uri-coding.js25 assert(e instanceof URIError);
64 assert(e instanceof URIError);
Dregression-test-issue-267.js20 URIError(isNaN(__proto__));
Dregression-test-issue-264.js43 …Boolean(encodeURI(DataView(ArrayBuffer(os),parseFloat(Set()),URIError(Object(Int8Array(Function(pa…
/third_party/jerryscript/tests/jerry/es2015/
Dinstanceof-symbol-hasinstance.js52 value: function (arg) { throw new URIError ("ErrorAlways"); }
59 assert (ex instanceof URIError);
78 get: function () { throw new URIError ("ErrorGenerator"); }
85 assert (ex instanceof URIError);
Dinstanceof-symbol-hasinstance-class.js41 throw new URIError("ErrorAlways");
49 assert (ex instanceof URIError);
Derror.js21 assert(Object.getPrototypeOf(URIError) === Error);
/third_party/node/test/fixtures/wpt/streams/transform-streams/
Derrors.any.js112 assert_throws_js(URIError, () => new TransformStream({
113 start() { throw new URIError('start thrown error'); },
120 size() { throw new URIError('size thrown error'); }
123 assert_throws_js(URIError, () => new TransformStream({
132 const controllerError = new URIError('controller.error');
142 assert_throws_js(URIError, () => new TransformStream({
/third_party/typescript/tests/baselines/reference/
DerrorCause(target=esnext).types93 new URIError("foo", { cause: new Error("bar") });
94 >new URIError("foo", { cause: new Error("bar") }) : URIError
95 >URIError : URIErrorConstructor
DerrorCause(target=es2021).types93 new URIError("foo", { cause: new Error("bar") });
94 >new URIError("foo", { cause: new Error("bar") }) : URIError & Error
95 >URIError : URIErrorConstructor
DerrorCause(target=es2022).types93 new URIError("foo", { cause: new Error("bar") });
94 >new URIError("foo", { cause: new Error("bar") }) : URIError
95 >URIError : URIErrorConstructor
DerrorCause(target=es2021).js15 new URIError("foo", { cause: new Error("bar") });
30 new URIError("foo", { cause: new Error("bar") });
DerrorCause(target=es2022).js15 new URIError("foo", { cause: new Error("bar") });
30 new URIError("foo", { cause: new Error("bar") });
DerrorCause(target=esnext).js15 new URIError("foo", { cause: new Error("bar") });
30 new URIError("foo", { cause: new Error("bar") });
DerrorCause(target=es2021).symbols53 new URIError("foo", { cause: new Error("bar") });
54 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
DerrorCause(target=es2022).symbols57 new URIError("foo", { cause: new Error("bar") });
58 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
DerrorCause(target=esnext).symbols57 new URIError("foo", { cause: new Error("bar") });
58 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
D1.0lib-noErrors.js924 interface URIError extends Error {
926 declare var URIError: {
927 new (message?: string): URIError;
928 (message?: string): URIError;
929 prototype: URIError;
/third_party/typescript/tests/cases/conformance/decorators/
D1.0lib-noErrors.ts924 interface URIError extends Error { interface
926 declare var URIError: { variable
927 new (message?: string): URIError;
928 (message?: string): URIError;
929 prototype: URIError;
/third_party/typescript/src/lib/
Des2022.error.d.ts40 new (message?: string, options?: ErrorOptions): URIError;
41 (message?: string, options?: ErrorOptions): URIError;
/third_party/typescript/lib/
Dlib.es2022.error.d.ts60 new (message?: string, options?: ErrorOptions): URIError;
61 (message?: string, options?: ErrorOptions): URIError;
/third_party/node/lib/internal/
Derror_serdes.js29 URIError,
42 Error, TypeError, RangeError, URIError, SyntaxError, ReferenceError, EvalError, property
/third_party/jerryscript/tests/jerry/fail/
Dregression-test-issue-2719.js15 JSON.stringify(URIError, valueOf, new String('abc\u2040\u2030cba'));
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/try_statements/
Dtry_statements.ts43 Assert.isTrue(err instanceof URIError);
/third_party/typescript/tests/cases/compiler/
DerrorCause.ts16 new URIError("foo", { cause: new Error("bar") });

123