tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

ary-ptrn-elem-id-iter-complete.js (1334B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/dstr-binding/ary-ptrn-elem-id-iter-complete.case
      3 // - src/dstr-binding/default/try.template
      4 /*---
      5 description: SingleNameBinding when value iteration completes (try statement)
      6 esid: sec-runtime-semantics-catchclauseevaluation
      7 features: [destructuring-binding]
      8 flags: [generated]
      9 info: |
     10    Catch : catch ( CatchParameter ) Block
     11 
     12    [...]
     13    5. Let status be the result of performing BindingInitialization for
     14       CatchParameter passing thrownValue and catchEnv as arguments.
     15    [...]
     16 
     17    13.3.3.6 Runtime Semantics: IteratorBindingInitialization
     18 
     19    SingleNameBinding : BindingIdentifier Initializeropt
     20 
     21    [...]
     22    4. If iteratorRecord.[[done]] is false, then
     23       a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
     24       b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
     25       c. ReturnIfAbrupt(next).
     26       d. If next is false, set iteratorRecord.[[done]] to true.
     27       e. Else,
     28          [...]
     29    5. If iteratorRecord.[[done]] is true, let v be undefined.
     30    [...]
     31    8. Return InitializeReferencedBinding(lhs, v).
     32 ---*/
     33 
     34 var ranCatch = false;
     35 
     36 try {
     37  throw [];
     38 } catch ([x]) {
     39  assert.sameValue(x, undefined);
     40  ranCatch = true;
     41 }
     42 
     43 assert(ranCatch, 'executed `catch` block');
     44 
     45 reportCompare(0, 0);