2016-09-27 14:52:56 +00:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2017-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax --turbo-escape
|
2016-09-27 14:52:56 +00:00
|
|
|
|
|
|
|
function f(apply) {
|
|
|
|
var value = 23;
|
|
|
|
apply(function bogeyman() { value = 42 });
|
|
|
|
return value;
|
|
|
|
}
|
2019-03-01 10:19:54 +00:00
|
|
|
%PrepareFunctionForOptimization(f);
|
2016-09-27 14:52:56 +00:00
|
|
|
function apply(fun) { fun() }
|
|
|
|
assertEquals(42, f(apply));
|
|
|
|
assertEquals(42, f(apply));
|
|
|
|
%NeverOptimizeFunction(apply);
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
assertEquals(42, f(apply));
|