tor-browser

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

calls.js (272B)


      1 foo(1, '2', bar())
      2 
      3 foo()
      4  .bar()
      5  .bazz()
      6 
      7 console.log('yo')
      8 
      9 foo(
     10  1,
     11  bar()
     12 )
     13 
     14 var a = 3;
     15 
     16 // set a step point at the first call expression in step expressions
     17 var x = { a: a(), b: b(), c: c() };
     18 var b = [ foo() ];
     19 [ a(), b(), c() ];
     20 (1, a(), b());
     21 x(1, a(), b());