blob: bd4f577f787a1b06ded1ff62d09240f3c2a2c017 [file] [log] [blame]
// Copyright (C) 2019 Leo Balter. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-finalization-registry.prototype.constructor
description: FinalizationRegistry.prototype.constructor property descriptor
info: |
FinalizationRegistry.prototype.constructor
The initial value of FinalizationRegistry.prototype.constructor is the intrinsic
object %FinalizationRegistry%.
17 ECMAScript Standard Built-in Objects
includes: [propertyHelper.js]
features: [FinalizationRegistry]
---*/
verifyProperty(FinalizationRegistry.prototype, 'constructor', {
value: FinalizationRegistry,
writable: true,
enumerable: false,
configurable: true
});