2015-08-23 06:09:40 -07:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-01-20 09:45:45 -08:00
|
|
|
// Flags: --allow-natives-syntax
|
2015-08-23 06:09:40 -07:00
|
|
|
|
|
|
|
(function(x) {
|
|
|
|
(function(x) {
|
|
|
|
var boom = (() => eval(x));
|
2019-08-01 08:38:30 +02:00
|
|
|
%PrepareFunctionForOptimization(boom);
|
2015-08-23 06:09:40 -07:00
|
|
|
assertEquals(23, boom());
|
|
|
|
assertEquals(23, boom());
|
|
|
|
%OptimizeFunctionOnNextCall(boom);
|
|
|
|
assertEquals(23, boom());
|
|
|
|
assertEquals("23", x);
|
|
|
|
})("23");
|
|
|
|
assertEquals("42", x);
|
|
|
|
})("42");
|
|
|
|
|
|
|
|
(function(x) {
|
|
|
|
(function(x) {
|
|
|
|
var boom = (() => (eval("var x = 66"), x));
|
2019-08-01 08:38:30 +02:00
|
|
|
%PrepareFunctionForOptimization(boom);
|
2015-08-23 06:09:40 -07:00
|
|
|
assertEquals(66, boom());
|
|
|
|
assertEquals(66, boom());
|
|
|
|
%OptimizeFunctionOnNextCall(boom);
|
|
|
|
assertEquals(66, boom());
|
|
|
|
assertEquals("23", x);
|
|
|
|
})("23");
|
|
|
|
assertEquals("42", x);
|
|
|
|
})("42");
|