michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: * Contributor: Jason Orendorff michael@0: */ michael@0: michael@0: function f(x) { return 1 + "" + (x + 1); } michael@0: reportCompare("12", f(1), ""); michael@0: var g = eval("(" + f + ")"); michael@0: reportCompare("12", g(1), "");