sundar@1511: /* sundar@1511: * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. sundar@1511: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@1511: * sundar@1511: * This code is free software; you can redistribute it and/or modify it sundar@1511: * under the terms of the GNU General Public License version 2 only, as sundar@1511: * published by the Free Software Foundation. sundar@1511: * sundar@1511: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@1511: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@1511: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@1511: * version 2 for more details (a copy is included in the LICENSE file that sundar@1511: * accompanied this code). sundar@1511: * sundar@1511: * You should have received a copy of the GNU General Public License version sundar@1511: * 2 along with this work; if not, write to the Free Software Foundation, sundar@1511: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@1511: * sundar@1511: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@1511: * or visit www.oracle.com if you need additional information or have any sundar@1511: * questions. sundar@1511: */ sundar@1511: sundar@1511: /** sundar@1511: * JDK-8114838: Anonymous functions escape to surrounding scope when defined under "with" statement sundar@1511: * sundar@1511: * @test sundar@1511: * @run sundar@1511: */ sundar@1511: sundar@1511: // do *not* introduce new lines! The next line should be 32 sundar@1511: with({}) { function () {} } sundar@1511: if (typeof this["L:32"] != 'undefined') { sundar@1511: throw new Error("anonymous name spills into global scope"); sundar@1511: } sundar@1511: sundar@1511: var func = eval("function() {}"); sundar@1511: if (typeof func != 'function') { sundar@1511: throw new Error("eval of anonymous function does not work!"); sundar@1511: } sundar@1511: sundar@1511: var ScriptEngineManager = Java.type("javax.script.ScriptEngineManager"); sundar@1511: var engine = new ScriptEngineManager().getEngineByName("nashorn"); sundar@1511: var func2 = engine.eval("function() {}"); sundar@1511: if (typeof func2 != 'function') { sundar@1511: throw new Error("eval of anonymous function does not work from script engine!"); sundar@1511: }