undefined.js (407B)
1 // Copyright (C) 2016 the V8 project authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 /*--- 4 esid: sec-reflect-object 5 description: > 6 Reflect.enumerate was removed and it's not a function anymore 7 features: [Reflect] 8 ---*/ 9 10 assert.sameValue(Reflect.hasOwnProperty("enumerate"), false); 11 assert.sameValue(Reflect.enumerate, undefined); 12 13 reportCompare(0, 0);