00ed3a2df5
Bug: chromium:979401 Change-Id: I99ab2fd04bd2e23b4d7a494cecc056ec74cb9d04 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1687422 Auto-Submit: Igor Sheludko <ishell@chromium.org> Commit-Queue: Toon Verwaest <verwaest@chromium.org> Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/heads/master@{#62674}
21 lines
595 B
JavaScript
21 lines
595 B
JavaScript
// Copyright 2019 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.
|
|
|
|
let min_fields = 1015;
|
|
let max_fields = 1025;
|
|
|
|
let static_fields_src = "";
|
|
let instance_fields_src = "";
|
|
for (let i = 0; i < max_fields; i++) {
|
|
static_fields_src += " static f" + i + "() {}\n";
|
|
instance_fields_src += " g" + i + "() {}\n";
|
|
|
|
if (i >= min_fields) {
|
|
let src1 = "class A {\n" + static_fields_src + "}\n";
|
|
eval(src1);
|
|
let src2 = "class B {\n" + instance_fields_src + "}\n";
|
|
eval(src2);
|
|
}
|
|
}
|