tor-browser

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

testConstSwitch2.js (148B)


      1 function testConstSwitch2() {
      2    var x;
      3    for (var j = 0; j < 4; ++j) { switch(0/0) { } }
      4    return "ok";
      5 }
      6 assertEq(testConstSwitch2(), "ok");