2017-02-21 13:12:39 +00: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.
|
|
|
|
|
2017-06-22 13:46:04 +00:00
|
|
|
// Flags: --allow-natives-syntax
|
2017-02-21 13:12:39 +00:00
|
|
|
|
|
|
|
var good = 23;
|
|
|
|
var boom = 42;
|
|
|
|
|
|
|
|
function foo(name) {
|
|
|
|
return this[name];
|
2019-06-12 14:00:50 +00:00
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
2017-02-21 13:12:39 +00:00
|
|
|
assertEquals(23, foo('good'));
|
|
|
|
assertEquals(23, foo('good'));
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
assertEquals(42, foo('boom'));
|