-
Bug
-
Resolution: Fixed
-
P3
-
fx2.1
JavaScript2Java Bridge cannot resolve overloaded methods properly.
Consider the following example.
I've got the following dummy class:
public class MyClass {
int method(String a) {
return 1;
}
int method(int a) {
return 2;
}
}
I expose it to JS:
webEngine.addJavaScriptBinding("test", myObject);
Then I try to call the "string" method (the first one):
Object o = webEngine.executeScript("test.method('aaa');");
System.out.println(o);
And "2" is printed.
Seems like Bridge always selects the last overloaded method to invoke; if I change places of the methods in my dummy class, everything works perfectly.
However, this is probably not what developers expect from Java.
Consider the following example.
I've got the following dummy class:
public class MyClass {
int method(String a) {
return 1;
}
int method(int a) {
return 2;
}
}
I expose it to JS:
webEngine.addJavaScriptBinding("test", myObject);
Then I try to call the "string" method (the first one):
Object o = webEngine.executeScript("test.method('aaa');");
System.out.println(o);
And "2" is printed.
Seems like Bridge always selects the last overloaded method to invoke; if I change places of the methods in my dummy class, everything works perfectly.
However, this is probably not what developers expect from Java.
- duplicates
-
JDK-8115373 JavaScript2Java Bridge picks a random method when ambiguous call happens in JS
-
- Closed
-