8026317: $ in the function name results in wrong function being invoked
authorsundar
Fri, 11 Oct 2013 14:11:14 +0200
changeset 20939 9ed46c9b07cc
parent 20938 e92d8249f60c
child 20940 0853aa84d530
child 20942 385b0ab4ecdd
8026317: $ in the function name results in wrong function being invoked Reviewed-by: lagergren, jlaskey
nashorn/src/jdk/nashorn/internal/codegen/Namespace.java
nashorn/test/script/basic/JDK-8026317.js
nashorn/test/script/basic/JDK-8026317.js.EXPECTED
--- a/nashorn/src/jdk/nashorn/internal/codegen/Namespace.java	Fri Oct 11 11:15:59 2013 +0200
+++ b/nashorn/src/jdk/nashorn/internal/codegen/Namespace.java	Fri Oct 11 14:11:14 2013 +0200
@@ -81,7 +81,7 @@
                 final int count = counter + 1;
                 namespaceDirectory.put(base, count);
 
-                return base + "$" + count;
+                return base + '-' + count;
             }
         }
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nashorn/test/script/basic/JDK-8026317.js	Fri Oct 11 14:11:14 2013 +0200
@@ -0,0 +1,63 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ * 
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ * 
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ * 
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ * 
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * JDK-8026317: $ in the function name results in wrong function being invoked
+ *
+ * @test
+ * @run
+ */
+
+function case1() {
+    function g() {
+        return 0
+    }
+    function g() {
+        return 1
+    }
+    function g$1() {
+        return 2
+    }
+
+    return g$1()
+}
+
+print(case1());
+
+function case2() {
+    function g() {
+        return 0
+    }
+
+    var h = function g() {
+        return 1
+    }
+
+    function g$1() {
+        return 2
+    }
+
+    return h()
+}
+
+print(case2());
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nashorn/test/script/basic/JDK-8026317.js.EXPECTED	Fri Oct 11 14:11:14 2013 +0200
@@ -0,0 +1,2 @@
+2
+1