public class com.oracle.truffle.tools.dap.types.EvaluateResponse extends com.oracle.truffle.tools.dap.types.Response
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.tools.dap.types.EvaluateResponse
  super_class: com.oracle.truffle.tools.dap.types.Response
{
  void <init>(com.oracle.truffle.tools.utils.json.JSONObject);
    descriptor: (Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
        start local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
         0: .line 36
            aload 0 /* this */
            aload 1 /* jsonData */
            invokespecial com.oracle.truffle.tools.dap.types.Response.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
         1: .line 37
            return
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
            0    2     1  jsonData  Lcom/oracle/truffle/tools/utils/json/JSONObject;
    MethodParameters:
          Name  Flags
      jsonData  

  public com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody getBody();
    descriptor: ()Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
         0: .line 41
            new com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.EvaluateResponse.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "body"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.getJSONObject:(Ljava/lang/String;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokespecial com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            areturn
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;

  public com.oracle.truffle.tools.dap.types.EvaluateResponse setBody(com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody);
    descriptor: (Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;)Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
        start local 1 // com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody body
         0: .line 45
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.EvaluateResponse.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "body"
            aload 1 /* body */
            getfield com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         1: .line 46
            aload 0 /* this */
            areturn
        end local 1 // com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody body
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
            0    2     1  body  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
    MethodParameters:
      Name  Flags
      body  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
        start local 1 // java.lang.Object obj
         0: .line 51
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 52
            iconst_1
            ireturn
         2: .line 54
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 55
            iconst_0
            ireturn
         4: .line 57
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* obj */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 6
         5: .line 58
            iconst_0
            ireturn
         6: .line 60
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.tools.dap.types.EvaluateResponse
            astore 2 /* other */
        start local 2 // com.oracle.truffle.tools.dap.types.EvaluateResponse other
         7: .line 61
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getBody:()Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getBody:()Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 62
            iconst_0
            ireturn
         9: .line 64
      StackMap locals: com.oracle.truffle.tools.dap.types.EvaluateResponse
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getType:()Ljava/lang/String;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getType:()Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 11
        10: .line 65
            iconst_0
            ireturn
        11: .line 67
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getRequestSeq:()I
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getRequestSeq:()I
            if_icmpeq 13
        12: .line 68
            iconst_0
            ireturn
        13: .line 70
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.isSuccess:()Z
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.isSuccess:()Z
            if_icmpeq 15
        14: .line 71
            iconst_0
            ireturn
        15: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getCommand:()Ljava/lang/String;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getCommand:()Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 17
        16: .line 74
            iconst_0
            ireturn
        17: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getMessage:()Ljava/lang/String;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getMessage:()Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        18: .line 77
            iconst_0
            ireturn
        19: .line 79
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getSeq:()I
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getSeq:()I
            if_icmpeq 21
        20: .line 80
            iconst_0
            ireturn
        21: .line 82
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // com.oracle.truffle.tools.dap.types.EvaluateResponse other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
            0   22     1    obj  Ljava/lang/Object;
            7   22     2  other  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
         0: .line 87
            iconst_5
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 88
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getBody:()Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         2: .line 89
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getType:()Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         3: .line 90
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getRequestSeq:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
         4: .line 91
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.isSuccess:()Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* hash */
         5: .line 92
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getCommand:()Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         6: .line 93
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getMessage:()Ljava/lang/String;
            ifnull 8
         7: .line 94
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getMessage:()Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         8: .line 96
      StackMap locals: int
      StackMap stack:
            bipush 59
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getSeq:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
         9: .line 97
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
            1   10     1  hash  I

  public static com.oracle.truffle.tools.dap.types.EvaluateResponse create(com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody, java.lang.Integer, java.lang.Boolean, java.lang.String, java.lang.Integer);
    descriptor: (Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/String;Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/EvaluateResponse;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=6, args_size=5
        start local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody body
        start local 1 // java.lang.Integer requestSeq
        start local 2 // java.lang.Boolean success
        start local 3 // java.lang.String command
        start local 4 // java.lang.Integer seq
         0: .line 101
            new com.oracle.truffle.tools.utils.json.JSONObject
            dup
            invokespecial com.oracle.truffle.tools.utils.json.JSONObject.<init>:()V
            astore 5 /* json */
        start local 5 // com.oracle.truffle.tools.utils.json.JSONObject json
         1: .line 102
            aload 5 /* json */
            ldc "body"
            aload 0 /* body */
            getfield com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         2: .line 103
            aload 5 /* json */
            ldc "type"
            ldc "response"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         3: .line 104
            aload 5 /* json */
            ldc "request_seq"
            aload 1 /* requestSeq */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         4: .line 105
            aload 5 /* json */
            ldc "success"
            aload 2 /* success */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         5: .line 106
            aload 5 /* json */
            ldc "command"
            aload 3 /* command */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         6: .line 107
            aload 5 /* json */
            ldc "seq"
            aload 4 /* seq */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         7: .line 108
            new com.oracle.truffle.tools.dap.types.EvaluateResponse
            dup
            aload 5 /* json */
            invokespecial com.oracle.truffle.tools.dap.types.EvaluateResponse.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            areturn
        end local 5 // com.oracle.truffle.tools.utils.json.JSONObject json
        end local 4 // java.lang.Integer seq
        end local 3 // java.lang.String command
        end local 2 // java.lang.Boolean success
        end local 1 // java.lang.Integer requestSeq
        end local 0 // com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody body
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        body  Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
            0    8     1  requestSeq  Ljava/lang/Integer;
            0    8     2     success  Ljava/lang/Boolean;
            0    8     3     command  Ljava/lang/String;
            0    8     4         seq  Ljava/lang/Integer;
            1    8     5        json  Lcom/oracle/truffle/tools/utils/json/JSONObject;
    MethodParameters:
            Name  Flags
      body        
      requestSeq  
      success     
      command     
      seq         

  public java.lang.Object getBody();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.oracle.truffle.tools.dap.types.EvaluateResponse.getBody:()Lcom/oracle/truffle/tools/dap/types/EvaluateResponse$ResponseBody;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "EvaluateResponse.java"
NestMembers:
  com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody
InnerClasses:
  public ResponseBody = com.oracle.truffle.tools.dap.types.EvaluateResponse$ResponseBody of com.oracle.truffle.tools.dap.types.EvaluateResponse