test262/test/language/statements/try/dstr-ary-ptrn-rest-not-fina...

38 lines
1.0 KiB
JavaScript

// This file was procedurally generated from the following sources:
// - src/dstr-binding/ary-ptrn-rest-not-final-obj.case
// - src/dstr-binding/default/try.template
/*---
description: Rest element (object binding pattern) may not be followed by any element (try statement)
esid: sec-runtime-semantics-catchclauseevaluation
es6id: 13.15.7
features: [destructuring-binding]
flags: [generated]
negative:
phase: early
type: SyntaxError
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 ]
---*/
var ranCatch = false;
try {
throw [1, 2, 3];
} catch ([...{ x }, y]) {
ranCatch = true;
}
assert(ranCatch, 'executed `catch` block');