Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
// Contributor: Gary Kwong <gary@rumblingedge.com>
var expect = 42;
var actual = (function({
x: [w]
},
x) {
with({}) {return w;}
})({x:[42]});
reportCompare(expect, actual, "ok");