test/script/basic/JDK-8006755.js

Sat, 23 Mar 2013 00:58:39 +0100

author
attila
date
Sat, 23 Mar 2013 00:58:39 +0100
changeset 144
4be452026847
parent 47
3f528769aee1
child 952
6d5471a497fb
permissions
-rw-r--r--

8010652: Eliminate non-child references in Block/FunctionNode, and make few node types immutable
Reviewed-by: jlaskey, lagergren

sundar@47 1 /*
sundar@47 2 * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
sundar@47 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sundar@47 4 *
sundar@47 5 * This code is free software; you can redistribute it and/or modify it
sundar@47 6 * under the terms of the GNU General Public License version 2 only, as
sundar@47 7 * published by the Free Software Foundation.
sundar@47 8 *
sundar@47 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sundar@47 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sundar@47 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sundar@47 12 * version 2 for more details (a copy is included in the LICENSE file that
sundar@47 13 * accompanied this code).
sundar@47 14 *
sundar@47 15 * You should have received a copy of the GNU General Public License version
sundar@47 16 * 2 along with this work; if not, write to the Free Software Foundation,
sundar@47 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sundar@47 18 *
sundar@47 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sundar@47 20 * or visit www.oracle.com if you need additional information or have any
sundar@47 21 * questions.
sundar@47 22 */
sundar@47 23
sundar@47 24 /**
sundar@47 25 * JDK-8006755: Functions inside with statements dont get correct scope
sundar@47 26 *
sundar@47 27 * @test
sundar@47 28 * @run
sundar@47 29 */
sundar@47 30
sundar@47 31 var scope = { x: "hello" };
sundar@47 32
sundar@47 33 with (scope) {
attila@144 34 var main = function() {
sundar@47 35 if (x != "hello") {
sundar@47 36 fail("x != 'hello'");
sundar@47 37 }
sundar@47 38 }
sundar@47 39 }
sundar@47 40
sundar@47 41 main()

mercurial