mirror of https://github.com/tc39/test262.git
14 lines
444 B
JavaScript
14 lines
444 B
JavaScript
// Copyright (C) 2021 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
/*---
|
|
esid: sec-realm-constructor
|
|
description: >
|
|
The Realm constructor is the initial value of the "Realm" property of the global object.
|
|
includes: [propertyHelper.js]
|
|
features: [callable-boundary-realms]
|
|
---*/
|
|
|
|
verifyNotEnumerable(this, "Realm");
|
|
verifyWritable(this, "Realm");
|
|
verifyConfigurable(this, "Realm");
|