fef6f8eddc
New API is here: https://github.com/tc39/proposal-weakrefs/issues/55 The WeakCell parts stay in the old API, resulting in temporary code duplication in some parts. Those parts will go away once the WeakCell-related parts are migrated to the new API (but the spec needs some work first). BUG=v8:8179 Change-Id: I81ca824a14d830e3c5fa515d5ad7e5f78c10e19d Reviewed-on: https://chromium-review.googlesource.com/c/1378171 Commit-Queue: Marja Hölttä <marja@chromium.org> Reviewed-by: Ulan Degenbaev <ulan@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#58264}
49 lines
977 B
JavaScript
49 lines
977 B
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 o1 = {};
|
|
let o2 = {};
|
|
let wr1;
|
|
let wr2;
|
|
(function() {
|
|
wr1 = new WeakRef(o1);
|
|
wr2 = new WeakRef(o2);
|
|
})();
|
|
|
|
// Since the WeakRefs were created during this turn, they're not cleared by GC.
|
|
gc();
|
|
|
|
(function() {
|
|
assertNotEquals(undefined, wr1.deref());
|
|
assertNotEquals(undefined, wr2.deref());
|
|
})();
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// New turn.
|
|
|
|
wr1.deref();
|
|
o1 = null;
|
|
gc(); // deref makes sure we don't clean up wr1
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// New turn.
|
|
|
|
wr2.deref();
|
|
o2 = null;
|
|
gc(); // deref makes sure we don't clean up wr2
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// New turn.
|
|
|
|
assertEquals(undefined, wr1.deref());
|
|
|
|
gc();
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// New turn.
|
|
|
|
assertEquals(undefined, wr2.deref());
|