2018-01-26 11:38:54 +00:00
|
|
|
// Copyright 2018 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
|
|
|
|
|
|
|
|
function deferred_func() {
|
2019-06-12 14:00:50 +00:00
|
|
|
class C {
|
|
|
|
method1() {}
|
|
|
|
}
|
2018-01-26 11:38:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let bound = (a => a).bind(this, 0);
|
|
|
|
|
|
|
|
function opt() {
|
2019-06-12 14:00:50 +00:00
|
|
|
deferred_func.prototype; // ReduceJSLoadNamed
|
2018-01-26 11:38:54 +00:00
|
|
|
|
2019-06-12 14:00:50 +00:00
|
|
|
return bound();
|
|
|
|
};
|
|
|
|
%PrepareFunctionForOptimization(opt);
|
2018-01-26 11:38:54 +00:00
|
|
|
assertEquals(0, opt());
|
|
|
|
%OptimizeFunctionOnNextCall(opt);
|
|
|
|
|
|
|
|
assertEquals(0, opt());
|