2016-02-06 13:30:59 +01:00
|
|
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2016-02-22 15:47:03 +01:00
|
|
|
esid: sec-reflect-object
|
2016-02-06 13:30:59 +01:00
|
|
|
description: >
|
|
|
|
Reflect.enumerate was removed and it's not a function anymore
|
2018-07-21 00:42:39 +02:00
|
|
|
features: [Reflect]
|
2016-02-06 13:30:59 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
assert.sameValue(Reflect.hasOwnProperty("enumerate"), false);
|
|
|
|
assert.sameValue(Reflect.enumerate, undefined);
|