2021-07-16 18:00:56 +02:00
|
|
|
// Copyright (C) 2021 Rick Waldron. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
2021-09-02 17:07:19 +02:00
|
|
|
esid: sec-shadowrealm-constructor
|
2021-07-16 18:00:56 +02:00
|
|
|
description: >
|
2021-09-02 17:07:19 +02:00
|
|
|
The ShadowRealm constructor is the initial value of the "ShadowRealm" property of the global object.
|
2021-07-16 18:00:56 +02:00
|
|
|
includes: [propertyHelper.js]
|
2021-09-02 16:46:33 +02:00
|
|
|
features: [ShadowRealm]
|
2021-07-16 18:00:56 +02:00
|
|
|
---*/
|
|
|
|
|
2021-09-02 17:07:19 +02:00
|
|
|
verifyProperty(this, "ShadowRealm", {
|
2021-07-19 19:26:09 +02:00
|
|
|
enumerable: false,
|
|
|
|
writable: true,
|
|
|
|
configurable: true,
|
|
|
|
});
|