tor-browser

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

property-name-yield.js (292B)


      1 // Copyright (C) 2013 the V8 project authors. All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 description: >
      6    `yield` may be used as a literal property name in an object literal.
      7 es6id: 12.1.1
      8 ---*/
      9 
     10 ({ yield: 1 });
     11 
     12 reportCompare(0, 0);