public class com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody extends com.oracle.truffle.tools.dap.types.JSONBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody
  super_class: com.oracle.truffle.tools.dap.types.JSONBase
{
  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.StackTraceResponse$ResponseBody this
        start local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
         0: .line 118
            aload 0 /* this */
            aload 1 /* jsonData */
            invokespecial com.oracle.truffle.tools.dap.types.JSONBase.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
         1: .line 119
            return
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
            0    2     1  jsonData  Lcom/oracle/truffle/tools/utils/json/JSONObject;
    MethodParameters:
          Name  Flags
      jsonData  

  public java.util.List<com.oracle.truffle.tools.dap.types.StackFrame> getStackFrames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
         0: .line 126
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "stackFrames"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.getJSONArray:(Ljava/lang/String;)Lcom/oracle/truffle/tools/utils/json/JSONArray;
            astore 1 /* json */
        start local 1 // com.oracle.truffle.tools.utils.json.JSONArray json
         1: .line 127
            new java.util.ArrayList
            dup
            aload 1 /* json */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONArray.length:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 2 /* list */
        start local 2 // java.util.List list
         2: .line 128
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 129
      StackMap locals: com.oracle.truffle.tools.utils.json.JSONArray java.util.List int
      StackMap stack:
            aload 2 /* list */
            new com.oracle.truffle.tools.dap.types.StackFrame
            dup
            aload 1 /* json */
            iload 3 /* i */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONArray.getJSONObject:(I)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokespecial com.oracle.truffle.tools.dap.types.StackFrame.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 128
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 1 /* json */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONArray.length:()I
            if_icmplt 4
        end local 3 // int i
         7: .line 131
            aload 2 /* list */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 2 // java.util.List list
        end local 1 // com.oracle.truffle.tools.utils.json.JSONArray json
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
            1    8     1  json  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            2    8     2  list  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;
            3    7     3     i  I
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;

  public com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody setStackFrames(java.util.List<com.oracle.truffle.tools.dap.types.StackFrame>);
    descriptor: (Ljava/util/List;)Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
        start local 1 // java.util.List stackFrames
         0: .line 135
            new com.oracle.truffle.tools.utils.json.JSONArray
            dup
            invokespecial com.oracle.truffle.tools.utils.json.JSONArray.<init>:()V
            astore 2 /* json */
        start local 2 // com.oracle.truffle.tools.utils.json.JSONArray json
         1: .line 136
            aload 1 /* stackFrames */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody java.util.List com.oracle.truffle.tools.utils.json.JSONArray top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.truffle.tools.dap.types.StackFrame
            astore 3 /* stackFrame */
        start local 3 // com.oracle.truffle.tools.dap.types.StackFrame stackFrame
         3: .line 137
            aload 2 /* json */
            aload 3 /* stackFrame */
            getfield com.oracle.truffle.tools.dap.types.StackFrame.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokevirtual com.oracle.truffle.tools.utils.json.JSONArray.put:(Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONArray;
            pop
        end local 3 // com.oracle.truffle.tools.dap.types.StackFrame stackFrame
         4: .line 136
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 139
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "stackFrames"
            aload 2 /* json */
            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 140
            aload 0 /* this */
            areturn
        end local 2 // com.oracle.truffle.tools.utils.json.JSONArray json
        end local 1 // java.util.List stackFrames
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
            0    7     1  stackFrames  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;
            1    7     2         json  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            3    4     3   stackFrame  Lcom/oracle/truffle/tools/dap/types/StackFrame;
    Signature: (Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;)Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
    MethodParameters:
             Name  Flags
      stackFrames  

  public java.lang.Integer getTotalFrames();
    descriptor: ()Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
         0: .line 147
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "totalFrames"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.has:(Ljava/lang/String;)Z
            ifeq 1
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "totalFrames"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.getInt:(Ljava/lang/String;)I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.lang.Integer
         2: areturn
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;

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

  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.StackTraceResponse$ResponseBody this
        start local 1 // java.lang.Object obj
         0: .line 157
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 158
            iconst_1
            ireturn
         2: .line 160
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 161
            iconst_0
            ireturn
         4: .line 163
      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 164
            iconst_0
            ireturn
         6: .line 166
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody
            astore 2 /* other */
        start local 2 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody other
         7: .line 167
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getStackFrames:()Ljava/util/List;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getStackFrames:()Ljava/util/List;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 168
            iconst_0
            ireturn
         9: .line 170
      StackMap locals: com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getTotalFrames:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getTotalFrames:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 11
        10: .line 171
            iconst_0
            ireturn
        11: .line 173
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
            0   12     1    obj  Ljava/lang/Object;
            7   12     2  other  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
    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.StackTraceResponse$ResponseBody this
         0: .line 178
            iconst_3
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 179
            bipush 13
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getStackFrames:()Ljava/util/List;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         2: .line 180
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getTotalFrames:()Ljava/lang/Integer;
            ifnull 4
         3: .line 181
            bipush 13
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.getTotalFrames:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
         4: .line 183
      StackMap locals: int
      StackMap stack:
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
            1    5     1  hash  I

  public static com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody create(java.util.List<com.oracle.truffle.tools.dap.types.StackFrame>);
    descriptor: (Ljava/util/List;)Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.util.List stackFrames
         0: .line 187
            new com.oracle.truffle.tools.utils.json.JSONObject
            dup
            invokespecial com.oracle.truffle.tools.utils.json.JSONObject.<init>:()V
            astore 1 /* json */
        start local 1 // com.oracle.truffle.tools.utils.json.JSONObject json
         1: .line 188
            new com.oracle.truffle.tools.utils.json.JSONArray
            dup
            invokespecial com.oracle.truffle.tools.utils.json.JSONArray.<init>:()V
            astore 2 /* stackFramesJsonArr */
        start local 2 // com.oracle.truffle.tools.utils.json.JSONArray stackFramesJsonArr
         2: .line 189
            aload 0 /* stackFrames */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: java.util.List com.oracle.truffle.tools.utils.json.JSONObject com.oracle.truffle.tools.utils.json.JSONArray top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.oracle.truffle.tools.dap.types.StackFrame
            astore 3 /* stackFrame */
        start local 3 // com.oracle.truffle.tools.dap.types.StackFrame stackFrame
         4: .line 190
            aload 2 /* stackFramesJsonArr */
            aload 3 /* stackFrame */
            getfield com.oracle.truffle.tools.dap.types.StackFrame.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokevirtual com.oracle.truffle.tools.utils.json.JSONArray.put:(Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONArray;
            pop
        end local 3 // com.oracle.truffle.tools.dap.types.StackFrame stackFrame
         5: .line 189
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 192
            aload 1 /* json */
            ldc "stackFrames"
            aload 2 /* stackFramesJsonArr */
            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 193
            new com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody
            dup
            aload 1 /* json */
            invokespecial com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            areturn
        end local 2 // com.oracle.truffle.tools.utils.json.JSONArray stackFramesJsonArr
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject json
        end local 0 // java.util.List stackFrames
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    8     0         stackFrames  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;
            1    8     1                json  Lcom/oracle/truffle/tools/utils/json/JSONObject;
            2    8     2  stackFramesJsonArr  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            4    5     3          stackFrame  Lcom/oracle/truffle/tools/dap/types/StackFrame;
    Signature: (Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/StackFrame;>;)Lcom/oracle/truffle/tools/dap/types/StackTraceResponse$ResponseBody;
    MethodParameters:
             Name  Flags
      stackFrames  
}
SourceFile: "StackTraceResponse.java"
NestHost: com.oracle.truffle.tools.dap.types.StackTraceResponse
InnerClasses:
  public ResponseBody = com.oracle.truffle.tools.dap.types.StackTraceResponse$ResponseBody of com.oracle.truffle.tools.dap.types.StackTraceResponse