tor-browser

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

testNewWithClone.js (109B)


      1 with({}) {
      2    function f() {
      3        this.foo = "bar";
      4    }
      5    o = new f();
      6    assertEq(o.foo, "bar");
      7 }