weakref-finalizationregistry-error.js 632 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
// 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.

11
function callback(holdings) {
12 13 14
  throw new Error('callback');
};

15 16
const fg1 = new FinalizationRegistry(callback);
const fg2 = new FinalizationRegistry(callback);
17 18 19 20 21 22 23 24 25

(function() {
let x = {};
fg1.register(x, {});
fg2.register(x, {});
x = null;
})();

gc();