blob: 3a66d94eecef41816c1773c8fe7cba5f16662946 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
function Base() {
// Creates MNewObject, which is recoverable. An instruction which has the
// |RecoveredOnBailout| flag set mustn't have any live uses.
return {};
}
class C extends Base {
constructor() {
// |super()| assigns to |this|. The |this| slot mustn't be optimised away
// in case the debugger tries to read that slot.
super();
}
}
for (var i = 0; i < 100; i++) {
// The returned object is not used, so it can be optimised away.
new C();
}
|