public class com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments 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.SetDataBreakpointsArguments
  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.SetDataBreakpointsArguments this
        start local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
         0: .line 40
            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 41
            return
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject jsonData
        end local 0 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
            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.DataBreakpoint> getBreakpoints();
    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.SetDataBreakpointsArguments this
         0: .line 48
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "breakpoints"
            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 49
            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 50
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 51
      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.DataBreakpoint
            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.DataBreakpoint.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 50
            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 53
            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.SetDataBreakpointsArguments this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
            1    8     1  json  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            2    8     2  list  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;
            3    7     3     i  I
    Signature: ()Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;

  public com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments setBreakpoints(java.util.List<com.oracle.truffle.tools.dap.types.DataBreakpoint>);
    descriptor: (Ljava/util/List;)Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments this
        start local 1 // java.util.List breakpoints
         0: .line 57
            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 58
            aload 1 /* breakpoints */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments 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.DataBreakpoint
            astore 3 /* dataBreakpoint */
        start local 3 // com.oracle.truffle.tools.dap.types.DataBreakpoint dataBreakpoint
         3: .line 59
            aload 2 /* json */
            aload 3 /* dataBreakpoint */
            getfield com.oracle.truffle.tools.dap.types.DataBreakpoint.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.DataBreakpoint dataBreakpoint
         4: .line 58
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 61
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "breakpoints"
            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 62
            aload 0 /* this */
            areturn
        end local 2 // com.oracle.truffle.tools.utils.json.JSONArray json
        end local 1 // java.util.List breakpoints
        end local 0 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
            0    7     1     breakpoints  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;
            1    7     2            json  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            3    4     3  dataBreakpoint  Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;
    Signature: (Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;)Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
    MethodParameters:
             Name  Flags
      breakpoints  

  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.SetDataBreakpointsArguments this
        start local 1 // java.lang.Object obj
         0: .line 67
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 68
            iconst_1
            ireturn
         2: .line 70
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 71
            iconst_0
            ireturn
         4: .line 73
      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 74
            iconst_0
            ireturn
         6: .line 76
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments
            astore 2 /* other */
        start local 2 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments other
         7: .line 77
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.getBreakpoints:()Ljava/util/List;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.getBreakpoints:()Ljava/util/List;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 78
            iconst_0
            ireturn
         9: .line 80
      StackMap locals: com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
            0   10     1    obj  Ljava/lang/Object;
            7   10     2  other  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
    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.SetDataBreakpointsArguments this
         0: .line 85
            iconst_5
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 86
            bipush 23
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.getBreakpoints:()Ljava/util/List;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         2: .line 87
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
            1    3     1  hash  I

  public static com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments create(java.util.List<com.oracle.truffle.tools.dap.types.DataBreakpoint>);
    descriptor: (Ljava/util/List;)Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.util.List breakpoints
         0: .line 91
            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 92
            new com.oracle.truffle.tools.utils.json.JSONArray
            dup
            invokespecial com.oracle.truffle.tools.utils.json.JSONArray.<init>:()V
            astore 2 /* breakpointsJsonArr */
        start local 2 // com.oracle.truffle.tools.utils.json.JSONArray breakpointsJsonArr
         2: .line 93
            aload 0 /* breakpoints */
            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.DataBreakpoint
            astore 3 /* dataBreakpoint */
        start local 3 // com.oracle.truffle.tools.dap.types.DataBreakpoint dataBreakpoint
         4: .line 94
            aload 2 /* breakpointsJsonArr */
            aload 3 /* dataBreakpoint */
            getfield com.oracle.truffle.tools.dap.types.DataBreakpoint.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.DataBreakpoint dataBreakpoint
         5: .line 93
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 96
            aload 1 /* json */
            ldc "breakpoints"
            aload 2 /* breakpointsJsonArr */
            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 97
            new com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments
            dup
            aload 1 /* json */
            invokespecial com.oracle.truffle.tools.dap.types.SetDataBreakpointsArguments.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            areturn
        end local 2 // com.oracle.truffle.tools.utils.json.JSONArray breakpointsJsonArr
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject json
        end local 0 // java.util.List breakpoints
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    8     0         breakpoints  Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;
            1    8     1                json  Lcom/oracle/truffle/tools/utils/json/JSONObject;
            2    8     2  breakpointsJsonArr  Lcom/oracle/truffle/tools/utils/json/JSONArray;
            4    5     3      dataBreakpoint  Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;
    Signature: (Ljava/util/List<Lcom/oracle/truffle/tools/dap/types/DataBreakpoint;>;)Lcom/oracle/truffle/tools/dap/types/SetDataBreakpointsArguments;
    MethodParameters:
             Name  Flags
      breakpoints  
}
SourceFile: "SetDataBreakpointsArguments.java"