affdc80880
Bug: v8:6560, chromium:761639 Change-Id: Idf546f53b20387670e42187692e702ba5e9eab73 Reviewed-on: https://chromium-review.googlesource.com/647550 Reviewed-by: Igor Sheludko <ishell@chromium.org> Commit-Queue: Maya Lekova <mslekova@google.com> Cr-Commit-Position: refs/heads/master@{#47820}
11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
// Copyright 2017 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.
|
|
|
|
// Regression test for hitting a DCHECK in StoreProxy.
|
|
|
|
|
|
for (var i = 0; i < 10; i++) {
|
|
__proto__ = new Proxy({}, { getPrototypeOf() { } });
|
|
}
|