Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8115373

JavaScript2Java Bridge picks a random method when ambiguous call happens in JS

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • fx2.1, 7-pool
    • fx2.1
    • javafx
    • None
    • web

      JavaScript2Java Bridge picks a random method when ambiguous call happens on JavaScript side.

      I've experimented with the following class:
      public class MyClass {
        public int do(float a) {
         return 1;
        }
        public int do(double a) {
         return 2;
        }
      }

      When calling myClassObject.do(1.0) from JavaScript, a random "do" method is picked.
      This means that either "1.0" value is cast randomly to float or double, or a method is picked totally random disregarding parameter type.

            pbothner Per Bothner (Inactive)
            ilatyshe Irina Grineva (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: