2017-02-14 11:27:26 +01: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-10-18 15:03:02 -07:00
|
|
|
// Flags: --allow-natives-syntax
|
2017-02-14 11:27:26 +01:00
|
|
|
|
|
|
|
// This is to test if 'this' gets correctly initialized when inlining
|
|
|
|
// constructors in turbofan.
|
|
|
|
|
|
|
|
class superClass {
|
2019-08-16 11:32:46 +02:00
|
|
|
constructor() {}
|
2017-02-14 11:27:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class subClass extends superClass {
|
2019-08-16 11:32:46 +02:00
|
|
|
constructor() {
|
2017-02-14 11:27:26 +01:00
|
|
|
super();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function f() {
|
2019-08-16 11:32:46 +02:00
|
|
|
new subClass();
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(f);
|
2017-02-14 11:27:26 +01:00
|
|
|
f(); // We need this to collect feedback, so that subClass gets inlined in f.
|
2019-08-16 11:32:46 +02:00
|
|
|
%OptimizeFunctionOnNextCall(f);
|
2017-02-14 11:27:26 +01:00
|
|
|
f();
|