summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js')
-rw-r--r--js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js b/js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js
new file mode 100644
index 0000000000..e22664b6d2
--- /dev/null
+++ b/js/src/tests/test262/language/statements/async-generator/dflt-params-abrupt.js
@@ -0,0 +1,44 @@
+// This file was procedurally generated from the following sources:
+// - src/function-forms/dflt-params-abrupt.case
+// - src/function-forms/error/async-gen-func-decl.template
+/*---
+description: Abrupt completion returned by evaluation of initializer (async generator function declaration)
+esid: sec-asyncgenerator-definitions-instantiatefunctionobject
+features: [default-parameters, async-iteration]
+flags: [generated]
+info: |
+ AsyncGeneratorDeclaration : async [no LineTerminator here] function * BindingIdentifier
+ ( FormalParameters ) { AsyncGeneratorBody }
+
+ [...]
+ 3. Let F be ! AsyncGeneratorFunctionCreate(Normal, FormalParameters, AsyncGeneratorBody,
+ scope, strict).
+ [...]
+
+
+ 14.1.19 Runtime Semantics: IteratorBindingInitialization
+
+ FormalsList : FormalsList , FormalParameter
+
+ 1. Let status be the result of performing IteratorBindingInitialization for
+ FormalsList using iteratorRecord and environment as the arguments.
+ 2. ReturnIfAbrupt(status).
+ 3. Return the result of performing IteratorBindingInitialization for
+ FormalParameter using iteratorRecord and environment as the arguments.
+
+---*/
+
+
+var callCount = 0;
+async function* f(_ = (function() { throw new Test262Error(); }())) {
+
+ callCount = callCount + 1;
+}
+
+assert.throws(Test262Error, function() {
+ f();
+});
+
+assert.sameValue(callCount, 0, 'generator function body not evaluated');
+
+reportCompare(0, 0);