tor-browser

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

multi-line-name.js (232B)


      1 // Test that multi-line property names don't trip up source location asserts.
      2 
      3 class C {
      4    'line \
      5        continuation';
      6 
      7    'line \
      8        continuation with init' = 1;
      9 
     10    [1 +
     11        "bar"];
     12 
     13    [2 +
     14        "baz"] = 2;
     15 }