2016-05-10 17:57:37 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/dstr-binding/ary-ptrn-rest-init-id.case
|
|
|
|
// - src/dstr-binding/default/try.template
|
|
|
|
/*---
|
|
|
|
description: Reset element (identifier) does not support initializer (try statement)
|
|
|
|
esid: sec-runtime-semantics-catchclauseevaluation
|
|
|
|
es6id: 13.15.7
|
|
|
|
features: [destructuring-binding]
|
|
|
|
flags: [generated]
|
2016-05-28 22:15:57 +02:00
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2016-05-28 22:15:57 +02:00
|
|
|
type: SyntaxError
|
2016-05-10 17:57:37 +02:00
|
|
|
info: |
|
|
|
|
Catch : catch ( CatchParameter ) Block
|
|
|
|
|
|
|
|
[...]
|
|
|
|
5. Let status be the result of performing BindingInitialization for
|
|
|
|
CatchParameter passing thrownValue and catchEnv as arguments.
|
|
|
|
[...]
|
|
|
|
|
|
|
|
13.3.3 Destructuring Binding Patterns
|
|
|
|
ArrayBindingPattern[Yield] :
|
|
|
|
[ Elisionopt BindingRestElement[?Yield]opt ]
|
|
|
|
[ BindingElementList[?Yield] ]
|
|
|
|
[ BindingElementList[?Yield] , Elisionopt BindingRestElement[?Yield]opt ]
|
|
|
|
---*/
|
2017-04-29 22:22:24 +02:00
|
|
|
throw "Test262: This statement should not be evaluated.";
|
2016-05-10 17:57:37 +02:00
|
|
|
|
|
|
|
var ranCatch = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
throw [];
|
|
|
|
} catch ([...x = []]) {
|
|
|
|
|
|
|
|
ranCatch = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(ranCatch, 'executed `catch` block');
|