sundar@47: /* sundar@47: * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved. sundar@47: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. sundar@47: * sundar@47: * This code is free software; you can redistribute it and/or modify it sundar@47: * under the terms of the GNU General Public License version 2 only, as sundar@47: * published by the Free Software Foundation. sundar@47: * sundar@47: * This code is distributed in the hope that it will be useful, but WITHOUT sundar@47: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or sundar@47: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License sundar@47: * version 2 for more details (a copy is included in the LICENSE file that sundar@47: * accompanied this code). sundar@47: * sundar@47: * You should have received a copy of the GNU General Public License version sundar@47: * 2 along with this work; if not, write to the Free Software Foundation, sundar@47: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. sundar@47: * sundar@47: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA sundar@47: * or visit www.oracle.com if you need additional information or have any sundar@47: * questions. sundar@47: */ sundar@47: sundar@47: /** sundar@47: * JDK-8006755: Functions inside with statements dont get correct scope sundar@47: * sundar@47: * @test sundar@47: * @run sundar@47: */ sundar@47: sundar@47: var scope = { x: "hello" }; sundar@47: sundar@47: with (scope) { attila@144: var main = function() { sundar@47: if (x != "hello") { sundar@47: fail("x != 'hello'"); sundar@47: } sundar@47: } sundar@47: } sundar@47: sundar@47: main()