constructor.js (531B)
1 // Copyright (C) 2019 Leo Balter. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 esid: sec-finalization-registry-constructor 6 description: > 7 The FinalizationRegistry constructor is the %FinalizationRegistry% intrinsic object and the initial 8 value of the FinalizationRegistry property of the global object. 9 features: [FinalizationRegistry] 10 ---*/ 11 12 assert.sameValue( 13 typeof FinalizationRegistry, 'function', 14 'typeof FinalizationRegistry is function' 15 ); 16 17 reportCompare(0, 0);