blob: 845498151b1e6e69f6cf4f2be21ff84020c456b5 [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).
---*/
assert.sameValue(
Object.getPrototypeOf(Reflect),
Object.prototype,
'`Object.getPrototypeOf(Reflect)` returns `Object.prototype`'
);