tor-browser

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

prop-dup-set-set.js (324B)


      1 // Copyright (c) 2012 Ecma International.  All rights reserved.
      2 // This code is governed by the BSD license found in the LICENSE file.
      3 
      4 /*---
      5 es5id: 11.1.5_4-4-d-2
      6 description: Object literal - No SyntaxError for duplicate property name (set,set)
      7 ---*/
      8 
      9 void {
     10  set foo(arg) {},
     11  set foo(arg1) {}
     12 };
     13 
     14 reportCompare(0, 0);