tor-browser

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

bug1074833.js (387B)


      1 var i = 0;
      2 function cond() {
      3  return i++ < 20;
      4 }
      5 
      6 function inline() {
      7    ({ b: 1 })
      8 }
      9 
     10 function f() {
     11  do {
     12    ({ b: 1 })
     13  } while (cond())  
     14 }
     15 
     16 i = 0;
     17 f();
     18 
     19 function g() {
     20  do {
     21    if (cond()) { }
     22    ({ b: 1 })
     23  } while (cond())  
     24 }
     25 
     26 i = 0;
     27 g();
     28 
     29 
     30 function h() {
     31  do {
     32    inline();
     33  } while (cond())  
     34 }
     35 
     36 i = 0;
     37 h();
     38 
     39 
     40 i = 0;
     41 for (i = 0; cond(); i++)
     42  ({ set: Math.w });