mirror of
https://github.com/tc39/test262.git
synced 2025-05-27 18:20:28 +02:00
52 lines
1.1 KiB
JavaScript
52 lines
1.1 KiB
JavaScript
// 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_cells = [];
|
|
let cleanup = function(iter) {
|
|
for (wc of iter) {
|
|
cleanup_cells.push(wc);
|
|
}
|
|
++cleanup_count;
|
|
}
|
|
|
|
let o = {};
|
|
let wf = new WeakFactory(cleanup);
|
|
let weak_ref;
|
|
(function() {
|
|
weak_ref = wf.makeRef(o);
|
|
|
|
// cleanupSome won't do anything since there are no dirty WeakCells.
|
|
wf.cleanupSome();
|
|
assertEquals(0, cleanup_count);
|
|
})();
|
|
|
|
// Clear the KeepDuringJob set.
|
|
%PerformMicrotaskCheckpoint();
|
|
|
|
weak_ref.deref();
|
|
o = null;
|
|
|
|
// The WeakRef is not detected as dirty, since the KeepDuringJob set keeps the
|
|
// target object alive.
|
|
gc();
|
|
|
|
wf.cleanupSome();
|
|
assertEquals(0, cleanup_count);
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// Next turn.
|
|
|
|
// This GC detects the WeakRef as dirty.
|
|
gc();
|
|
|
|
// Clear the WeakRef just before we would've called cleanupSome.
|
|
weak_ref.clear();
|
|
|
|
wf.cleanupSome();
|
|
|
|
assertEquals(0, cleanup_count);
|