tor-browser

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

non-strict.js (466B)


      1 // Copyright (C) 2015 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 /*---
      4 es6id: 14.2.16
      5 description: >
      6    Runtime Semantics: Evaluation
      7 
      8    1. If the function code for this ArrowFunction is strict mode code (10.2.1),
      9      let strict be true. Otherwise let strict be false.
     10    ...
     11 
     12 flags: [noStrict]
     13 ---*/
     14 var af = _ => {
     15  foo = 1;
     16 };
     17 
     18 af();
     19 
     20 assert.sameValue(foo, 1);
     21 
     22 reportCompare(0, 0);