summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/weakrefs/symbol-in-finalizationregistry.js
blob: 2158143ac3d29d94db8568cb3ca86c6621ef272c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2023 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-symbol-as-weakmap-key --expose-gc --noincremental-marking

(async function () {

  let cleanUpCalled = false;
  const fg = new FinalizationRegistry((target) => {
    assertEquals('123', target);
    cleanUpCalled = true;
  });

  (function () {
    const innerKey = Symbol('123');
    fg.register(innerKey, '123');
  })();

  // We need to invoke GC asynchronously and wait for it to finish, so that
  // it doesn't need to scan the stack. Otherwise, the objects may not be
  // reclaimed because of conservative stack scanning and the test may not
  // work as intended.
  await gc({ type: 'major', execution: 'async' });
  assertFalse(cleanUpCalled);

  // Check that cleanup callback was called in a follow up task.
  setTimeout(() => { assertTrue(cleanUpCalled); }, 0);

})();