PR-URL: https://github.com/nodejs/node/pull/39945 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
39 lines
783 B
JavaScript
39 lines
783 B
JavaScript
// Copyright 2021 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: --allow-natives-syntax --interrupt-budget=100
|
|
|
|
function __f_9() {}
|
|
function __f_10() {}
|
|
|
|
function f(a, b) {
|
|
if (b) {
|
|
new __f_10().__proto__ = a;
|
|
} else {
|
|
__f_10.prototype = a;
|
|
}
|
|
}
|
|
|
|
function g(a, b, c) {
|
|
var d = a ? new __f_9() : {};
|
|
if (b) { g(d); }
|
|
f(d, c);
|
|
}
|
|
|
|
g(false, true, false);
|
|
g(false, false, false);
|
|
g(false, false, false, undefined);
|
|
|
|
g(false, true, true);
|
|
g(false, false, true);
|
|
g(false, false, true, undefined);
|
|
|
|
g(true, true, false);
|
|
g(true, false, false);
|
|
g(true, false, false, undefined);
|
|
|
|
g(true, true, true);
|
|
g(true, false, true);
|
|
g(true, false, true, undefined);
|