michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: * Contributors: Gary Kwong and Jason Orendorff michael@0: */ michael@0: michael@0: function f(y) { michael@0: eval("let (z=2, w=y) { (function () { w.p = 7; })(); }"); michael@0: } michael@0: var x = {}; michael@0: f(x); michael@0: assertEq(x.p, 7); michael@0: reportCompare(0, 0, "");