2adb1df7ab
Bug: v8:13091,v8:13445 Change-Id: I2d9ed6fe2cec75bfb3146f8b47aeeef8a95bfc29 Fixed: v8:13445 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3998818 Reviewed-by: Nico Hartmann <nicohartmann@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#84028}
17 lines
394 B
JavaScript
17 lines
394 B
JavaScript
// Copyright 2022 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 --assert-types
|
|
|
|
class A {};
|
|
|
|
class B extends A {};
|
|
|
|
B.__proto__ = null;
|
|
|
|
%PrepareFunctionForOptimization(B);
|
|
try { new B(); } catch {}
|
|
%OptimizeFunctionOnNextCall(B);
|
|
try { new B(); } catch {}
|