summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js')
-rw-r--r--js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js b/js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js
new file mode 100644
index 0000000000..af9ad6c4f6
--- /dev/null
+++ b/js/src/tests/test262/language/statements/try/dstr/ary-ptrn-rest-id-direct.js
@@ -0,0 +1,44 @@
+// This file was procedurally generated from the following sources:
+// - src/dstr-binding/ary-ptrn-rest-id-direct.case
+// - src/dstr-binding/default/try.template
+/*---
+description: Lone rest element (direct binding) (try statement)
+esid: sec-runtime-semantics-catchclauseevaluation
+features: [destructuring-binding]
+flags: [generated]
+includes: [compareArray.js]
+info: |
+ Catch : catch ( CatchParameter ) Block
+
+ [...]
+ 5. Let status be the result of performing BindingInitialization for
+ CatchParameter passing thrownValue and catchEnv as arguments.
+ [...]
+
+ Runtime Semantics: IteratorBindingInitialization
+
+ BindingRestElement : ... BindingIdentifier
+
+ [...]
+ 2. Let A be ! ArrayCreate(0).
+ 3. Let n be 0.
+ 4. Repeat,
+ [...]
+ f. Perform ! CreateDataPropertyOrThrow(A, ! ToString(n), nextValue).
+ g. Set n to n + 1.
+
+---*/
+
+var ranCatch = false;
+
+try {
+ throw [1];
+} catch ([...x]) {
+ assert(Array.isArray(x));
+ assert.compareArray(x, [1]);
+ ranCatch = true;
+}
+
+assert(ranCatch, 'executed `catch` block');
+
+reportCompare(0, 0);