tor-browser

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

obj-ptrn-prop-obj-value-undef.js (1010B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/dstr-binding/obj-ptrn-prop-obj-value-undef.case
      3 // - src/dstr-binding/error/try.template
      4 /*---
      5 description: Object binding pattern with "nested" object binding pattern taking the `null` value (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.7 Runtime Semantics: KeyedBindingInitialization
     18 
     19    [...]
     20    3. If Initializer is present and v is undefined, then
     21       [...]
     22    4. Return the result of performing BindingInitialization for BindingPattern
     23       passing v and environment as arguments.
     24 ---*/
     25 
     26 assert.throws(TypeError, function() {
     27  try {
     28    throw { };
     29  } catch ({ w: { x, y, z } = undefined }) {}
     30 });
     31 
     32 reportCompare(0, 0);