test262/test/built-ins/Atomics/proto.js

17 lines
471 B
JavaScript
Raw Normal View History

// Copyright (C) 2016 The V8 Project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
2017-07-26 23:49:55 +02:00
esid: sec-atomics-object
description: >
The prototype of Atomics is Object.prototype
info: |
The Atomics Object
The value of the [[Prototype]] internal slot of the Atomics object is the
intrinsic object %ObjectPrototype%.
features: [Atomics]
---*/
assert.sameValue(Object.getPrototypeOf(Atomics), Object.prototype);