Home
last modified time | relevance | path

Searched refs:EvalError (Results 1 – 25 of 47) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
DerrorCause(target=esnext).types35 new EvalError("foo", { cause: new Error("bar") });
36 >new EvalError("foo", { cause: new Error("bar") }) : EvalError
37 >EvalError : EvalErrorConstructor
45 new EvalError("foo", { cause: a });
46 >new EvalError("foo", { cause: a }) : EvalError
47 >EvalError : EvalErrorConstructor
DerrorCause(target=es2021).types35 new EvalError("foo", { cause: new Error("bar") });
36 >new EvalError("foo", { cause: new Error("bar") }) : EvalError & Error
37 >EvalError : EvalErrorConstructor
45 new EvalError("foo", { cause: a });
46 >new EvalError("foo", { cause: a }) : EvalError & Error
47 >EvalError : EvalErrorConstructor
DerrorCause(target=es2022).types35 new EvalError("foo", { cause: new Error("bar") });
36 >new EvalError("foo", { cause: new Error("bar") }) : EvalError
37 >EvalError : EvalErrorConstructor
45 new EvalError("foo", { cause: a });
46 >new EvalError("foo", { cause: a }) : EvalError
47 >EvalError : EvalErrorConstructor
DerrorCause(target=es2021).js9 new EvalError("foo", { cause: new Error("bar") });
10 new EvalError("foo", { cause: a });
24 new EvalError("foo", { cause: new Error("bar") });
25 new EvalError("foo", { cause: a });
DerrorCause(target=es2022).js9 new EvalError("foo", { cause: new Error("bar") });
10 new EvalError("foo", { cause: a });
24 new EvalError("foo", { cause: new Error("bar") });
25 new EvalError("foo", { cause: a });
DerrorCause(target=esnext).js9 new EvalError("foo", { cause: new Error("bar") });
10 new EvalError("foo", { cause: a });
24 new EvalError("foo", { cause: new Error("bar") });
25 new EvalError("foo", { cause: a });
DerrorCause(target=es2021).symbols23 new EvalError("foo", { cause: new Error("bar") });
24 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
28 new EvalError("foo", { cause: a });
29 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
DerrorCause(target=es2022).symbols27 new EvalError("foo", { cause: new Error("bar") });
28 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
32 new EvalError("foo", { cause: a });
33 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
DerrorCause(target=esnext).symbols27 new EvalError("foo", { cause: new Error("bar") });
28 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
32 new EvalError("foo", { cause: a });
33 >EvalError : Symbol(EvalError, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
D1.0lib-noErrors.js884 interface EvalError extends Error {
886 declare var EvalError: {
887 new (message?: string): EvalError;
888 (message?: string): EvalError;
889 prototype: EvalError;
DerrorCause(target=es2021).errors.txt31 new EvalError("foo", { cause: new Error("bar") });
34 new EvalError("foo", { cause: a });
/third_party/jerryscript/tests/jerry/
Derror.js115 e = new EvalError ();
120 e = new EvalError("some message");
130 assert (EvalError.prototype.toString === Error.prototype.toString);
131 assert (EvalError.prototype.constructor === EvalError);
132 assert (EvalError.prototype.name === "EvalError");
133 assert (EvalError.prototype.message === "");
134 assert (EvalError.prototype.toString() === "EvalError");
/third_party/typescript/tests/cases/compiler/
DerrorCause.ts10 new EvalError("foo", { cause: new Error("bar") });
11 new EvalError("foo", { cause: a });
/third_party/typescript/tests/cases/conformance/decorators/
D1.0lib-noErrors.ts884 interface EvalError extends Error { interface
886 declare var EvalError: { variable
887 new (message?: string): EvalError;
888 (message?: string): EvalError;
889 prototype: EvalError;
/third_party/node/test/parallel/
Dtest-vm-codegen.js28 const EvalError = runInContext('EvalError', ctx); constant
31 }, EvalError);
Dtest-eval-disallow-code-generation-from-strings.js9 assert.throws(() => eval('"eval"'), EvalError);
/third_party/typescript/src/lib/
Des2022.error.d.ts15 new (message?: string, options?: ErrorOptions): EvalError;
16 (message?: string, options?: ErrorOptions): EvalError;
/third_party/typescript/lib/
Dlib.es2022.error.d.ts35 new (message?: string, options?: ErrorOptions): EvalError;
36 (message?: string, options?: ErrorOptions): EvalError;
/third_party/node/lib/internal/
Derror_serdes.js7 EvalError,
42 Error, TypeError, RangeError, URIError, SyntaxError, ReferenceError, EvalError, property
Dfreeze_intrinsics.js48 EvalError,
262 EvalError,
/third_party/jerryscript/tests/jerry/es2015/
Dregression-test-issue-3204.js20 (new (Uint8Array)((new (ArrayBuffer)("5")), EvalError.length)).reduceRight(function() { })
Derror.js16 assert(Object.getPrototypeOf(EvalError) === Error);
Dbuiltin-prototypes.js23 EvalError.prototype,
Dlength-property.js23 EvalError,
/third_party/jerryscript/tests/jerry/es5.1/
Dbuiltin-prototypes.js71 EvalError.prototype,

12