mirror of https://github.com/lukechilds/node.git
Browse Source
This backport does not include the original changes to SLOW_DCHECK as it does not exist in the V8 in node v4.x Original commit message: Filter out stale left-trimmed handles BUG=chromium:620553 LOG=N R=jochen@chromium.org Review-Url: https://codereview.chromium.org/2078403002 Cr-Commit-Position: refs/heads/master@{#37108} PR-URL: https://github.com/nodejs/node/pull/10668 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>v4.x
Myles Borins
9 years ago
committed by
Myles Borins
2 changed files with 44 additions and 1 deletions
@ -0,0 +1,17 @@ |
|||
// Copyright 2016 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: --expose-gc
|
|||
|
|||
var o0 = []; |
|||
var o1 = []; |
|||
var cnt = 0; |
|||
o1.__defineGetter__(0, function() { |
|||
if (cnt++ > 2) return; |
|||
o0.shift(); |
|||
gc(); |
|||
o0.push(0); |
|||
o0.concat(o1); |
|||
}); |
|||
o1[0]; |
Loading…
Reference in new issue