8026317: $ in the function name results in wrong function being invoked
Reviewed-by: lagergren, jlaskey
This commit is contained in:
parent
a71c4a5390
commit
76d698bbf8
@ -81,7 +81,7 @@ public class Namespace {
|
|||||||
final int count = counter + 1;
|
final int count = counter + 1;
|
||||||
namespaceDirectory.put(base, count);
|
namespaceDirectory.put(base, count);
|
||||||
|
|
||||||
return base + "$" + count;
|
return base + '-' + count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
63
nashorn/test/script/basic/JDK-8026317.js
Normal file
63
nashorn/test/script/basic/JDK-8026317.js
Normal file
@ -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());
|
2
nashorn/test/script/basic/JDK-8026317.js.EXPECTED
Normal file
2
nashorn/test/script/basic/JDK-8026317.js.EXPECTED
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
2
|
||||||
|
1
|
Loading…
Reference in New Issue
Block a user