tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

testBug878520.js (206B)


      1 function surprise(depth) {
      2    arguments.callee.caller(depth);
      3 }
      4 
      5 (function(depth) {
      6    function foo() { function asmModule() { 'use asm'; return {} } };
      7    if (depth)
      8        surprise(depth - 1);
      9 })(2);