2020-02-10 20:35:51 +00:00
|
|
|
// Copyright 2020 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
// Flags: --harmony-weak-refs --expose-gc --noincremental-marking
|
|
|
|
// Flags: --no-stress-opt
|
|
|
|
|
|
|
|
// Since cleanup tasks are top-level tasks, errors thrown from them don't stop
|
|
|
|
// future cleanup tasks from running.
|
|
|
|
|
2020-04-07 22:07:13 +00:00
|
|
|
function callback(holdings) {
|
2020-02-10 20:35:51 +00:00
|
|
|
throw new Error('callback');
|
|
|
|
};
|
|
|
|
|
2020-02-25 01:19:48 +00:00
|
|
|
const fg1 = new FinalizationRegistry(callback);
|
|
|
|
const fg2 = new FinalizationRegistry(callback);
|
2020-02-10 20:35:51 +00:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
let x = {};
|
|
|
|
fg1.register(x, {});
|
|
|
|
fg2.register(x, {});
|
|
|
|
x = null;
|
|
|
|
})();
|
|
|
|
|
|
|
|
gc();
|