tor-browser

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

block-decl-global-skip-early-err.js (880B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/annex-b-fns/global-skip-early-err.case
      3 // - src/annex-b-fns/global/block.template
      4 /*---
      5 description: Extension not observed when creation of variable binding would produce an early error (Block statement in the global scope containing a function declaration)
      6 esid: sec-web-compat-globaldeclarationinstantiation
      7 flags: [generated, noStrict]
      8 info: |
      9    B.3.3.2 Changes to GlobalDeclarationInstantiation
     10 
     11    [...]
     12    b. If replacing the FunctionDeclaration f with a VariableStatement that has
     13       F as a BindingIdentifier would not produce any Early Errors for script,
     14       then
     15    [...]
     16 ---*/
     17 let f = 123;
     18 assert.sameValue(f, 123, 'binding is not initialized to `undefined`');
     19 
     20 {
     21  function f() {  }
     22 }
     23 
     24 assert.sameValue(f, 123, 'value is not updated following evaluation');
     25 
     26 reportCompare(0, 0);