tor-browser

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

testEvalInFunctionCallee.js (71B)


      1 function f(x,y) {
      2    eval("assertEq(arguments.callee, f)");
      3 }
      4 f(1,2);