jdk/src/share/back/util.c
changeset 24125 b85eeaae56c7
parent 23010 6dadb192ad81
child 24127 5d05d4c0de7f
equal deleted inserted replaced
24124:5f5f7f7a4328 24125:b85eeaae56c7
   588     }
   588     }
   589 
   589 
   590     if (inStream_command(in) == JDWP_COMMAND(ClassType, NewInstance)) {
   590     if (inStream_command(in) == JDWP_COMMAND(ClassType, NewInstance)) {
   591         invokeType = INVOKE_CONSTRUCTOR;
   591         invokeType = INVOKE_CONSTRUCTOR;
   592     } else if (inStream_command(in) == JDWP_COMMAND(ClassType, InvokeMethod)) {
   592     } else if (inStream_command(in) == JDWP_COMMAND(ClassType, InvokeMethod)) {
       
   593         invokeType = INVOKE_STATIC;
       
   594     } else if (inStream_command(in) == JDWP_COMMAND(InterfaceType, InvokeMethod)) {
   593         invokeType = INVOKE_STATIC;
   595         invokeType = INVOKE_STATIC;
   594     } else if (inStream_command(in) == JDWP_COMMAND(ObjectReference, InvokeMethod)) {
   596     } else if (inStream_command(in) == JDWP_COMMAND(ObjectReference, InvokeMethod)) {
   595         invokeType = INVOKE_INSTANCE;
   597         invokeType = INVOKE_INSTANCE;
   596     } else {
   598     } else {
   597         outStream_setError(out, JDWP_ERROR(INTERNAL));
   599         outStream_setError(out, JDWP_ERROR(INTERNAL));