drain-job-queue-after-quit-called.js (213B)
1 function d() { 2 quit(); 3 } 4 5 function bt() { 6 getBacktrace({thisprops: true}); 7 } 8 9 d.toString = bt.toString = drainJobQueue.toString = function () { 10 if (this === bt) 11 return ''; 12 this(); 13 } 14 15 bt();