blob: ed7bc5539849586627b3c8262cb2e5cee68f539d [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.
/*---
esid: sec-properties-of-the-set-prototype-object
description: >
The Set prototype object is the intrinsic object %SetPrototype%.
The value of the [[Prototype]] internal slot of the Set prototype
object is the intrinsic object %ObjectPrototype% (19.1.3). The Set
prototype object is an ordinary object. It does not have a
[[SetData]] internal slot.
---*/
assert.sameValue(
Object.getPrototypeOf(Set.prototype),
Object.prototype,
"`Object.getPrototypeOf(Set.prototype)` returns `Object.prototype`"
);