equal
deleted
inserted
replaced
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)); |