assertRecoveredOnBailout-0.js (216B)
1 // Prevent the GC from cancelling Ion compilations, when we expect them to succeed 2 gczeal(0); 3 4 function f () { 5 var o = {}; 6 var x = assertRecoveredOnBailout(o, true); 7 bailout(); 8 return x; 9 } 10 11 f(); 12 f();