Source code
Revision control
Copy as Markdown
Other Tools
with({}) {
function f() {
this.foo = "bar";
}
o = new f();
assertEq(o.foo, "bar");
}
with({}) {
function f() {
this.foo = "bar";
}
o = new f();
assertEq(o.foo, "bar");
}