summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/harmony/weakrefs/cleanupsome-2.js
blob: 67ed64e85ab85b1704ec2034e4e9713aba5d6daf (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
// 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 --allow-natives-syntax

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);
(function() {
  let o = {};
  fg.register(o, "holdings");

  assertEquals(0, cleanup_count);
})();

// GC will detect o as dead.
gc();

// passing no callback, should trigger cleanup function
fg.cleanupSome();
assertEquals(1, cleanup_count);
assertEquals(1, cleanup_holdings.length);
assertEquals("holdings", cleanup_holdings[0]);