tor-browser

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

await-in-global.js (327B)


      1 // Copyright 2016 Microsoft, Inc. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 author: Brian Terlson <brian.terlson@microsoft.com>
      6 esid: pending
      7 description: >
      8  Await is an identifier in global scope
      9 ---*/
     10 
     11 var await = 1;
     12 assert.sameValue(await, 1);
     13 
     14 reportCompare(0, 0);