tor-browser

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

statements.js (445B)


      1 debugger; debugger;
      2 console.log("a"); console.log("a");
      3 
      4 // assignments with valid pause locations
      5 this.x = 3;
      6 var a = 4;
      7 var d = [foo()]
      8 var f = 3, e = 4;
      9 var g = [], h = {};
     10 
     11 // assignments with invalid pause locations
     12 var b = foo();
     13 c = foo();
     14 
     15 
     16 const arr = [
     17  '1',
     18  2,
     19  foo()
     20 ]
     21 
     22 const obj = {
     23  a: '1',
     24  b: 2,
     25  c: foo(),
     26 }
     27 
     28 foo(
     29  1,
     30  foo(
     31    1
     32  ),
     33  3
     34 )
     35 
     36 throw new Error("3");
     37 3;
     38 
     39 while (i < 6) { break }
     40 while (i < 6) { continue;}