09a07038f2
The above intrinsic by now has to perform a check whether the prototype of a derived constructor is actually a constructor function itself. This is done as part of the {JSGetConstructorCall} operator. The intrinsic should just reduce down to the operator to maintain correct semantics. R=bmeurer@chromium.org TEST=mjsunit/regress/regress-crbug-696622 BUG=chromium:696622 Change-Id: Ia19c188f17ad16b12248db1f01a01b8d7258499b Reviewed-on: https://chromium-review.googlesource.com/447716 Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Commit-Queue: Michael Starzinger <mstarzinger@chromium.org> Cr-Commit-Position: refs/heads/master@{#43479}
15 lines
451 B
JavaScript
15 lines
451 B
JavaScript
// Copyright 2017 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
|
|
|
|
class C {}
|
|
class D extends C { constructor() { super(...unresolved, 75) } }
|
|
D.__proto__ = null;
|
|
|
|
assertThrows(() => new D(), TypeError);
|
|
assertThrows(() => new D(), TypeError);
|
|
%OptimizeFunctionOnNextCall(D);
|
|
assertThrows(() => new D(), TypeError);
|