2017-12-05 16:41:55 +01:00
|
|
|
// Copyright 2017 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-21 13:28:42 +02:00
|
|
|
// Flags: --allow-natives-syntax --turbofan
|
2017-12-05 16:41:55 +01:00
|
|
|
|
|
|
|
// Ensure that we properly check for elements on the prototypes.
|
|
|
|
function foo(o) {
|
|
|
|
var s = "";
|
|
|
|
for (var i in o) s += i;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
var o = {};
|
2019-03-15 18:35:06 +05:30
|
|
|
%PrepareFunctionForOptimization(foo);
|
2017-12-05 16:41:55 +01:00
|
|
|
assertEquals("", foo(o));
|
|
|
|
assertEquals("", foo(o));
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
assertEquals("", foo(o));
|
|
|
|
Object.prototype[0] = 1;
|
|
|
|
assertEquals("0", foo(o));
|