mirror of https://github.com/tc39/test262.git
34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
// Copyright (C) 2019 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
esid: sec-finalization-group-target
|
|
description: >
|
|
Normal completion even if the cleanupCallback fn is poisoned
|
|
info: |
|
|
FinalizationGroup ( cleanupCallback )
|
|
|
|
...
|
|
3. Let finalizationGroup be ? OrdinaryCreateFromConstructor(NewTarget, "%FinalizationGroupPrototype%", « [[Realm]], [[CleanupCallback]], [[Cells]], [[IsFinalizationGroupCleanupJobActive]] »).
|
|
...
|
|
9. Return finalizationGroup.
|
|
features: [FinalizationGroup]
|
|
---*/
|
|
|
|
var cleanupCallback = function() { throw new Test262Error('should not throw yet'); };
|
|
var fg = new FinalizationGroup(cleanupCallback);
|
|
|
|
assert.sameValue(Object.getPrototypeOf(fg), FinalizationGroup.prototype);
|
|
assert.notSameValue(fg, cleanupCallback, 'does not return the same function');
|
|
assert.sameValue(fg instanceof FinalizationGroup, true, 'instanceof');
|
|
|
|
for (let key of Object.getOwnPropertyNames(fg)) {
|
|
assert(false, `should not set any own named properties: ${key}`);
|
|
}
|
|
|
|
for (let key of Object.getOwnPropertySymbols(fg)) {
|
|
assert(false, `should not set any own symbol properties: ${String(key)}`);
|
|
}
|
|
|
|
assert.sameValue(Object.getPrototypeOf(fg), FinalizationGroup.prototype);
|