1e199f11a6
Object doesn't mean an Object, but JSObject. Bug: v8:13091,chromium:1374995 Change-Id: I7a9eef3de195c1aa7f2afd5ac3dbcac59b8b0781 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3990786 Reviewed-by: Tobias Tebbi <tebbi@chromium.org> Commit-Queue: Tobias Tebbi <tebbi@chromium.org> Auto-Submit: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#83977}
15 lines
400 B
JavaScript
15 lines
400 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: --omit-default-ctors --allow-natives-syntax --assert-types
|
|
|
|
class C0 {}
|
|
const proxy = new Proxy(C0, {});
|
|
class C1 extends proxy {}
|
|
|
|
%PrepareFunctionForOptimization(C1);
|
|
new C1();
|
|
%OptimizeFunctionOnNextCall(C1);
|
|
new C1();
|