15709b5a3e
Bug: v8:8394, v8:8801, v8:9183 Change-Id: Ia5169541ada58bf2bea64e720cae5e5c04617cbd Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1667001 Commit-Queue: Mythri Alle <mythria@chromium.org> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org> Cr-Commit-Position: refs/heads/master@{#62278}
25 lines
459 B
JavaScript
25 lines
459 B
JavaScript
// Copyright 2019 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
|
|
|
|
function foo(r) {
|
|
return r.finally();
|
|
}
|
|
|
|
const resolution = Promise.resolve();
|
|
foo(resolution);
|
|
|
|
function bar() {
|
|
try {
|
|
foo(undefined);
|
|
} catch (e) {}
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(bar);
|
|
bar();
|
|
bar();
|
|
%OptimizeFunctionOnNextCall(bar);
|
|
bar();
|