blob: 893774f1ee6c870106462aee087ac2262d3916d8 [file] [log] [blame]
// Copyright 2018 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 --opt
/* Test deopt behaviors when the prototype has elements */
// findIndex
(function () {
var array = [,];
function findIndex() {
return array.findIndex(v => v > 0);
}
%PrepareFunctionForOptimization(findIndex);
findIndex(); findIndex();
%OptimizeFunctionOnNextCall(findIndex);
assertEquals(findIndex(), -1);
array.__proto__.push(6);
// deopt
assertEquals(findIndex(), 0);
})();