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(x) { return eval('"mumble"; x + 42'); } michael@0: michael@0: var expect = true; michael@0: var actual = ('' + f).indexOf("mumble") >= 0; michael@0: michael@0: reportCompare(expect, actual, "unknown directive in eval code wrongly dropped");