blob: 0f2e87df5104038170a02d2c69617ea4b680441a [file] [log] [blame]
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 26.1
description: >
The value of the [[Prototype]] internal slot of the Reflect object
is the intrinsic object %ObjectPrototype% (19.1.3).
features: [Reflect]
---*/
assert.sameValue(
Object.getPrototypeOf(Reflect),
Object.prototype,
'`Object.getPrototypeOf(Reflect)` returns `Object.prototype`'
);