2016-09-09 12:19:48 +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
|
2016-09-09 12:19:48 +00:00
|
|
|
|
|
|
|
class Base {}
|
|
|
|
class Subclass extends Base {
|
|
|
|
constructor() {
|
|
|
|
%DeoptimizeNow();
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
}
|
2019-06-17 16:13:52 +00:00
|
|
|
%PrepareFunctionForOptimization(Subclass);
|
2016-09-09 12:19:48 +00:00
|
|
|
new Subclass();
|
|
|
|
new Subclass();
|
|
|
|
%OptimizeFunctionOnNextCall(Subclass);
|
|
|
|
new Subclass();
|