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}
28 lines
685 B
JavaScript
28 lines
685 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 wr;
|
|
(function() {
|
|
let o = {};
|
|
wr = new WeakRef(o);
|
|
// Don't deref here, we want to test that the creation is enough to keep the
|
|
// WeakRef alive until the end of the turn.
|
|
})();
|
|
|
|
gc();
|
|
|
|
// Since the WeakRef was created during this turn, it is not cleared by GC.
|
|
(function() {
|
|
assertNotEquals(undefined, wr.deref());
|
|
})();
|
|
|
|
%PerformMicrotaskCheckpoint();
|
|
// Next turn.
|
|
|
|
gc();
|
|
|
|
assertEquals(undefined, wr.deref());
|