tor-browser

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

value-yield-non-strict-escaped.js (357B)


      1 // Copyright (C) 2017 André Bargull. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 esid: sec-identifiers-static-semantics-early-errors
      6 description: >
      7  `yield` is not a reserved identifier in non-strict mode code and may be used as a label.
      8 flags: [noStrict]
      9 ---*/
     10 
     11 yi\u0065ld: 1;
     12 
     13 reportCompare(0, 0);