From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- .../parameters-error-reject-promise.js | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 js/src/tests/non262/async-functions/parameters-error-reject-promise.js (limited to 'js/src/tests/non262/async-functions/parameters-error-reject-promise.js') diff --git a/js/src/tests/non262/async-functions/parameters-error-reject-promise.js b/js/src/tests/non262/async-functions/parameters-error-reject-promise.js new file mode 100644 index 0000000000..a6cca7cdde --- /dev/null +++ b/js/src/tests/non262/async-functions/parameters-error-reject-promise.js @@ -0,0 +1,56 @@ +// |reftest| skip-if(!xulRuntime.shell) -- needs drainJobQueue + +class ExpectedError extends Error { + name = "ExpectedError"; +} + +class UnexpectedError extends Error { + name = "UnexpectedError"; +} + +function throwExpectedError() { + throw new ExpectedError(); +} + +async function throwsInParameterExpression(a = throwExpectedError()) { + throw new UnexpectedError(); +} +assertEventuallyThrows(throwsInParameterExpression(), ExpectedError); + +async function throwsInObjectDestructuringParameterEmpty({}) { + throw new UnexpectedError(); +} +assertEventuallyThrows(throwsInObjectDestructuringParameterEmpty(), TypeError); + +let objectThrowingExpectedError = { + get a() { + throw new ExpectedError(); + } +} + +async function throwsInObjectDestructuringParameter({a}) { + throw new UnexpectedError(); +} +assertEventuallyThrows(throwsInObjectDestructuringParameter(), TypeError); +assertEventuallyThrows(throwsInObjectDestructuringParameter(objectThrowingExpectedError), ExpectedError); + +let iteratorThrowingExpectedError = { + [Symbol.iterator]() { + throw new ExpectedError(); + } +}; + +async function throwsInArrayDestructuringParameterEmpty([]) { + throw new UnexpectedError(); +} +assertEventuallyThrows(throwsInArrayDestructuringParameterEmpty(), TypeError); +assertEventuallyThrows(throwsInArrayDestructuringParameterEmpty(iteratorThrowingExpectedError), ExpectedError); + +async function throwsInArrayDestructuringParameter([a]) { + throw new UnexpectedError(); +} +assertEventuallyThrows(throwsInArrayDestructuringParameter(), TypeError); +assertEventuallyThrows(throwsInArrayDestructuringParameter(iteratorThrowingExpectedError), ExpectedError); + +if (typeof reportCompare === "function") + reportCompare(true, true); -- cgit v1.2.3