2016-09-06 11:58:42 +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.
|
|
|
|
|
|
|
|
// Flags: --allow-natives-syntax --turbo-escape
|
|
|
|
|
|
|
|
function f() {
|
|
|
|
with ({ value:"foo" }) { return value; }
|
|
|
|
}
|
2019-06-18 16:03:44 +00:00
|
|
|
%PrepareFunctionForOptimization(f);
|
2016-09-06 11:58:42 +00:00
|
|
|
assertEquals("foo", f());
|
|
|
|
%OptimizeFunctionOnNextCall(f);
|
|
|
|
assertEquals("foo", f());
|