summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/compiler/omit-default-ctors-array-iterator.js
blob: f6bab657006b2a7ef9bc88baf370eb584dc5beee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// 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.

// Flags: --omit-default-ctors --allow-natives-syntax --turbofan
// Flags: --no-always-turbofan

// 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 {}

  %PrepareFunctionForOptimization(C);
  new C();
  %OptimizeFunctionOnNextCall(C);

  // C default ctor doing "...args" and B default ctor doing "...args".
  assertEquals(2, iterationCount);

  new C();

  // C default ctor doing "...args" and B default ctor doing "...args".
  assertEquals(4, iterationCount);
  assertOptimized(C);  // No deopt.

  Array.prototype[Symbol.iterator] = oldIterator;
})();