blob: 8df09824be5d13d8148fd4e5d17adb690a22e27f [file] [log] [blame]
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: The prototype of WeakRef.prototype is Object.prototype
esid: sec-properties-of-the-weak-ref-prototype-object
info: |
The value of the [[Prototype]] internal slot of the WeakRef prototype object
is the intrinsic object %ObjectPrototype%.
features: [WeakRef]
---*/
var proto = Object.getPrototypeOf(WeakRef.prototype);
assert.sameValue(proto, Object.prototype);