prop-dup-get-set-get.js (350B)
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-3 6 description: > 7 Object literal - No SyntaxError for duplicate property name 8 (get,set,get) 9 ---*/ 10 11 void { 12 get foo() {}, 13 set foo(arg) {}, 14 get foo() {} 15 }; 16 17 reportCompare(0, 0);