/third_party/jerryscript/tests/jerry/ |
D | error.js | 181 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");
|
D | global-uri-coding.js | 25 assert(e instanceof URIError); 64 assert(e instanceof URIError);
|
D | regression-test-issue-267.js | 20 URIError(isNaN(__proto__));
|
D | regression-test-issue-264.js | 43 …Boolean(encodeURI(DataView(ArrayBuffer(os),parseFloat(Set()),URIError(Object(Int8Array(Function(pa…
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | instanceof-symbol-hasinstance.js | 52 value: function (arg) { throw new URIError ("ErrorAlways"); } 59 assert (ex instanceof URIError); 78 get: function () { throw new URIError ("ErrorGenerator"); } 85 assert (ex instanceof URIError);
|
D | instanceof-symbol-hasinstance-class.js | 41 throw new URIError("ErrorAlways"); 49 assert (ex instanceof URIError);
|
D | error.js | 21 assert(Object.getPrototypeOf(URIError) === Error);
|
/third_party/node/test/fixtures/wpt/streams/transform-streams/ |
D | errors.any.js | 112 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/ |
D | errorCause(target=esnext).types | 93 new URIError("foo", { cause: new Error("bar") }); 94 >new URIError("foo", { cause: new Error("bar") }) : URIError 95 >URIError : URIErrorConstructor
|
D | errorCause(target=es2021).types | 93 new URIError("foo", { cause: new Error("bar") }); 94 >new URIError("foo", { cause: new Error("bar") }) : URIError & Error 95 >URIError : URIErrorConstructor
|
D | errorCause(target=es2022).types | 93 new URIError("foo", { cause: new Error("bar") }); 94 >new URIError("foo", { cause: new Error("bar") }) : URIError 95 >URIError : URIErrorConstructor
|
D | errorCause(target=es2021).js | 15 new URIError("foo", { cause: new Error("bar") }); 30 new URIError("foo", { cause: new Error("bar") });
|
D | errorCause(target=es2022).js | 15 new URIError("foo", { cause: new Error("bar") }); 30 new URIError("foo", { cause: new Error("bar") });
|
D | errorCause(target=esnext).js | 15 new URIError("foo", { cause: new Error("bar") }); 30 new URIError("foo", { cause: new Error("bar") });
|
D | errorCause(target=es2021).symbols | 53 new URIError("foo", { cause: new Error("bar") }); 54 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
D | errorCause(target=es2022).symbols | 57 new URIError("foo", { cause: new Error("bar") }); 58 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
D | errorCause(target=esnext).symbols | 57 new URIError("foo", { cause: new Error("bar") }); 58 >URIError : Symbol(URIError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
D | 1.0lib-noErrors.js | 924 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/ |
D | 1.0lib-noErrors.ts | 924 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/ |
D | es2022.error.d.ts | 40 new (message?: string, options?: ErrorOptions): URIError; 41 (message?: string, options?: ErrorOptions): URIError;
|
/third_party/typescript/lib/ |
D | lib.es2022.error.d.ts | 60 new (message?: string, options?: ErrorOptions): URIError; 61 (message?: string, options?: ErrorOptions): URIError;
|
/third_party/node/lib/internal/ |
D | error_serdes.js | 29 URIError, 42 Error, TypeError, RangeError, URIError, SyntaxError, ReferenceError, EvalError, property
|
/third_party/jerryscript/tests/jerry/fail/ |
D | regression-test-issue-2719.js | 15 JSON.stringify(URIError, valueOf, new String('abc\u2040\u2030cba'));
|
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/try_statements/ |
D | try_statements.ts | 43 Assert.isTrue(err instanceof URIError);
|
/third_party/typescript/tests/cases/compiler/ |
D | errorCause.ts | 16 new URIError("foo", { cause: new Error("bar") });
|