aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/weakrefs/cleanupsome-after-unregister.js
blob: 0cef0a1af55b2801ce8733b585b8d86a422caba3 (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
31
32
33
34
35
// Copyright 2018 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

let cleanup_count = 0;
let cleanup_holdings = [];
let cleanup = function(iter) {
  for (holdings of iter) {
    cleanup_holdings.push(holdings);
  }
  ++cleanup_count;
}

let fg = new FinalizationGroup(cleanup);
let key = {"k": "this is the key"};
(function() {
  let o = {};
  weak_cell = fg.register(o, "holdings", key);

  // cleanupSome won't do anything since there are no reclaimed targets.
  fg.cleanupSome();
  assertEquals(0, cleanup_count);
})();

// GC will detect the WeakCell as dirty.
gc();

// Unregister the tracked object just before calling cleanupSome.
fg.unregister(key);

fg.cleanupSome();

assertEquals(0, cleanup_count);