tor-browser

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

eval-gtbndng-local-bndng-let.js (752B)


      1 // |reftest| module
      2 // Copyright (C) 2016 the V8 project authors. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 /*---
      5 description: References to local `let` bindings resolve successfully
      6 esid: sec-moduleevaluation
      7 info: |
      8    8.1.1.5.1 GetBindingValue (N, S)
      9 
     10    [...]
     11    3. If the binding for N is an indirect binding, then
     12       [...]
     13    5. Return the value currently bound to N in envRec.
     14 
     15    13.3.1.4 Runtime Semantics: Evaluation
     16 
     17    LexicalBinding : BindingIdentifier Initializer
     18 
     19    [...]
     20    6. Return InitializeReferencedBinding(lhs, value).
     21 flags: [module]
     22 ---*/
     23 
     24 let letBinding = 1;
     25 assert.sameValue(letBinding, 1);
     26 
     27 letBinding = 2;
     28 assert.sameValue(letBinding, 2);
     29 
     30 reportCompare(0, 0);