2016-08-29 18:31:12 +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-08-10 07:54:33 +00:00
|
|
|
// Flags: --allow-natives-syntax --es-staging
|
2016-08-29 18:31:12 +00:00
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
var g = (async () => { return JSON.stringify() });
|
|
|
|
|
2019-06-17 11:48:08 +00:00
|
|
|
%PrepareFunctionForOptimization(g);
|
2016-08-29 18:31:12 +00:00
|
|
|
g();
|
|
|
|
g();
|
|
|
|
%OptimizeFunctionOnNextCall(g);
|
|
|
|
g();
|