2022-08-31 14:31:55 +00:00
|
|
|
// Copyright 2022 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.
|
|
|
|
|
2022-09-01 09:10:48 +00:00
|
|
|
// Flags: --omit-default-ctors --no-sparkplug --no-turbofan --no-always-turbofan
|
2022-08-31 14:31:55 +00:00
|
|
|
|
2022-09-01 09:10:48 +00:00
|
|
|
// TODO(v8:13091): Enable Sparkplug + TurboFan.
|
2022-08-31 14:31:55 +00:00
|
|
|
|
|
|
|
// This behavior is not spec compliant, see crbug.com/v8/13249.
|
|
|
|
(function ArrayIteratorMonkeyPatched() {
|
|
|
|
let iterationCount = 0;
|
|
|
|
const oldIterator = Array.prototype[Symbol.iterator];
|
|
|
|
Array.prototype[Symbol.iterator] =
|
|
|
|
function () { ++iterationCount; return oldIterator.call(this); };
|
|
|
|
|
|
|
|
class A {}
|
|
|
|
class B extends A {}
|
|
|
|
class C extends B {}
|
|
|
|
|
|
|
|
assertEquals(0, iterationCount);
|
|
|
|
|
|
|
|
new C();
|
|
|
|
|
|
|
|
// C default ctor doing "...args" and B default ctor doing "...args".
|
|
|
|
assertEquals(2, iterationCount);
|
|
|
|
|
|
|
|
Array.prototype[Symbol.iterator] = oldIterator;
|
|
|
|
})();
|