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

j.l.c.MethodTypeDesc::insertParameterTypes​ doesn't control type of parameters

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 13
    • 12, 13
    • core-libs
    • None

      MethodTypeDesc insertParameterTypes(int pos, ClassDesc... paramTypes) allows to have paramTypes[i] == CD_void also the resulting method type can be more than 255 parameter slots

      Expected behavior​ should be as in the set of MethodType's methods:
      appendParameterTypes​(Class<?>... ptypesToInsert)
      appendParameterTypes​(List<Class<?>> ptypesToInsert)
      insertParameterTypes​(int num, Class<?>... ptypesToInsert)
      insertParameterTypes​(int num, List<Class<?>> ptypesToInsert)

      Throws:
      IllegalArgumentException - if any element of ptypesToInsert is void.class or if the resulting method type would have more than 255 parameter slots

            vromero Vicente Arturo Romero Zaldivar
            lkuskov Leonid Kuskov
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: