public class com.oracle.truffle.tools.dap.types.Breakpoint 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.Breakpoint
  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.Breakpoint 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.JSONBase.<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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  jsonData  Lcom/oracle/truffle/tools/utils/json/JSONObject;
    MethodParameters:
          Name  Flags
      jsonData  

  public java.lang.Integer getId();
    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.Breakpoint this
         0: .line 44
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "id"
            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.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "id"
            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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setId(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.Integer id
         0: .line 48
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "id"
            aload 1 /* id */
            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 49
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer id
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1    id  Ljava/lang/Integer;
    MethodParameters:
      Name  Flags
      id    

  public boolean isVerified();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
         0: .line 56
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "verified"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.getBoolean:(Ljava/lang/String;)Z
            ireturn
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setVerified(boolean);
    descriptor: (Z)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // boolean verified
         0: .line 60
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "verified"
            iload 1 /* verified */
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.put:(Ljava/lang/String;Z)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         1: .line 61
            aload 0 /* this */
            areturn
        end local 1 // boolean verified
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  verified  Z
    MethodParameters:
          Name  Flags
      verified  

  public java.lang.String getMessage();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
         0: .line 69
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "message"
            aconst_null
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.optString:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            areturn
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setMessage(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.String message
         0: .line 73
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "message"
            aload 1 /* message */
            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 74
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String message
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  message  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      message  

  public com.oracle.truffle.tools.dap.types.Source getSource();
    descriptor: ()Lcom/oracle/truffle/tools/dap/types/Source;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
         0: .line 81
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "source"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.has:(Ljava/lang/String;)Z
            ifeq 1
            new com.oracle.truffle.tools.dap.types.Source
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "source"
            invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.optJSONObject:(Ljava/lang/String;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            invokespecial com.oracle.truffle.tools.dap.types.Source.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: com.oracle.truffle.tools.dap.types.Source
         2: areturn
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setSource(com.oracle.truffle.tools.dap.types.Source);
    descriptor: (Lcom/oracle/truffle/tools/dap/types/Source;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // com.oracle.truffle.tools.dap.types.Source source
         0: .line 85
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "source"
            aload 1 /* source */
            ifnull 1
            aload 1 /* source */
            getfield com.oracle.truffle.tools.dap.types.Source.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            goto 2
      StackMap locals: com.oracle.truffle.tools.dap.types.Breakpoint com.oracle.truffle.tools.dap.types.Source
      StackMap stack: com.oracle.truffle.tools.utils.json.JSONObject java.lang.String
         1: aconst_null
      StackMap locals: com.oracle.truffle.tools.dap.types.Breakpoint com.oracle.truffle.tools.dap.types.Source
      StackMap stack: com.oracle.truffle.tools.utils.json.JSONObject java.lang.String com.oracle.truffle.tools.utils.json.JSONObject
         2: invokevirtual com.oracle.truffle.tools.utils.json.JSONObject.putOpt:(Ljava/lang/String;Ljava/lang/Object;)Lcom/oracle/truffle/tools/utils/json/JSONObject;
            pop
         3: .line 86
            aload 0 /* this */
            areturn
        end local 1 // com.oracle.truffle.tools.dap.types.Source source
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    4     1  source  Lcom/oracle/truffle/tools/dap/types/Source;
    MethodParameters:
        Name  Flags
      source  

  public java.lang.Integer getLine();
    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.Breakpoint this
         0: .line 93
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "line"
            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.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "line"
            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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setLine(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.Integer line
         0: .line 97
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "line"
            aload 1 /* line */
            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 98
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer line
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  line  Ljava/lang/Integer;
    MethodParameters:
      Name  Flags
      line  

  public java.lang.Integer getColumn();
    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.Breakpoint this
         0: .line 105
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "column"
            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.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "column"
            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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setColumn(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.Integer column
         0: .line 109
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "column"
            aload 1 /* column */
            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 110
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer column
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  column  Ljava/lang/Integer;
    MethodParameters:
        Name  Flags
      column  

  public java.lang.Integer getEndLine();
    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.Breakpoint this
         0: .line 117
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endLine"
            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.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endLine"
            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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setEndLine(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.Integer endLine
         0: .line 121
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endLine"
            aload 1 /* endLine */
            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 122
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer endLine
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  endLine  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      endLine  

  public java.lang.Integer getEndColumn();
    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.Breakpoint this
         0: .line 130
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endColumn"
            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.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endColumn"
            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.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;

  public com.oracle.truffle.tools.dap.types.Breakpoint setEndColumn(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
        start local 1 // java.lang.Integer endColumn
         0: .line 134
            aload 0 /* this */
            getfield com.oracle.truffle.tools.dap.types.Breakpoint.jsonData:Lcom/oracle/truffle/tools/utils/json/JSONObject;
            ldc "endColumn"
            aload 1 /* endColumn */
            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 135
            aload 0 /* this */
            areturn
        end local 1 // java.lang.Integer endColumn
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0    2     1  endColumn  Ljava/lang/Integer;
    MethodParameters:
           Name  Flags
      endColumn  

  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.Breakpoint this
        start local 1 // java.lang.Object obj
         0: .line 140
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 141
            iconst_1
            ireturn
         2: .line 143
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 4
         3: .line 144
            iconst_0
            ireturn
         4: .line 146
      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 147
            iconst_0
            ireturn
         6: .line 149
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast com.oracle.truffle.tools.dap.types.Breakpoint
            astore 2 /* other */
        start local 2 // com.oracle.truffle.tools.dap.types.Breakpoint other
         7: .line 150
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getId:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getId:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 9
         8: .line 151
            iconst_0
            ireturn
         9: .line 153
      StackMap locals: com.oracle.truffle.tools.dap.types.Breakpoint
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.isVerified:()Z
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.isVerified:()Z
            if_icmpeq 11
        10: .line 154
            iconst_0
            ireturn
        11: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getMessage:()Ljava/lang/String;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getMessage:()Ljava/lang/String;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 13
        12: .line 157
            iconst_0
            ireturn
        13: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getSource:()Lcom/oracle/truffle/tools/dap/types/Source;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getSource:()Lcom/oracle/truffle/tools/dap/types/Source;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 15
        14: .line 160
            iconst_0
            ireturn
        15: .line 162
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getLine:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getLine:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 17
        16: .line 163
            iconst_0
            ireturn
        17: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getColumn:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getColumn:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 19
        18: .line 166
            iconst_0
            ireturn
        19: .line 168
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndLine:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndLine:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 21
        20: .line 169
            iconst_0
            ireturn
        21: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndColumn:()Ljava/lang/Integer;
            aload 2 /* other */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndColumn:()Ljava/lang/Integer;
            invokestatic java.util.Objects.equals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifne 23
        22: .line 172
            iconst_0
            ireturn
        23: .line 174
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // com.oracle.truffle.tools.dap.types.Breakpoint other
        end local 1 // java.lang.Object obj
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   24     0   this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            0   24     1    obj  Ljava/lang/Object;
            7   24     2  other  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    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.Breakpoint this
         0: .line 179
            iconst_5
            istore 1 /* hash */
        start local 1 // int hash
         1: .line 180
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getId:()Ljava/lang/Integer;
            ifnull 3
         2: .line 181
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getId:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
         3: .line 183
      StackMap locals: int
      StackMap stack:
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.isVerified:()Z
            invokestatic java.lang.Boolean.hashCode:(Z)I
            iadd
            istore 1 /* hash */
         4: .line 184
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getMessage:()Ljava/lang/String;
            ifnull 6
         5: .line 185
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getMessage:()Ljava/lang/String;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         6: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getSource:()Lcom/oracle/truffle/tools/dap/types/Source;
            ifnull 8
         7: .line 188
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getSource:()Lcom/oracle/truffle/tools/dap/types/Source;
            invokestatic java.util.Objects.hashCode:(Ljava/lang/Object;)I
            iadd
            istore 1 /* hash */
         8: .line 190
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getLine:()Ljava/lang/Integer;
            ifnull 10
         9: .line 191
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getLine:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
        10: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getColumn:()Ljava/lang/Integer;
            ifnull 12
        11: .line 194
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getColumn:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
        12: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndLine:()Ljava/lang/Integer;
            ifnull 14
        13: .line 197
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndLine:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
        14: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndColumn:()Ljava/lang/Integer;
            ifnull 16
        15: .line 200
            bipush 29
            iload 1 /* hash */
            imul
            aload 0 /* this */
            invokevirtual com.oracle.truffle.tools.dap.types.Breakpoint.getEndColumn:()Ljava/lang/Integer;
            invokevirtual java.lang.Integer.intValue:()I
            invokestatic java.lang.Integer.hashCode:(I)I
            iadd
            istore 1 /* hash */
        16: .line 202
      StackMap locals:
      StackMap stack:
            iload 1 /* hash */
            ireturn
        end local 1 // int hash
        end local 0 // com.oracle.truffle.tools.dap.types.Breakpoint this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lcom/oracle/truffle/tools/dap/types/Breakpoint;
            1   17     1  hash  I

  public static com.oracle.truffle.tools.dap.types.Breakpoint create(java.lang.Boolean);
    descriptor: (Ljava/lang/Boolean;)Lcom/oracle/truffle/tools/dap/types/Breakpoint;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // java.lang.Boolean verified
         0: .line 206
            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 207
            aload 1 /* json */
            ldc "verified"
            aload 0 /* verified */
            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 208
            new com.oracle.truffle.tools.dap.types.Breakpoint
            dup
            aload 1 /* json */
            invokespecial com.oracle.truffle.tools.dap.types.Breakpoint.<init>:(Lcom/oracle/truffle/tools/utils/json/JSONObject;)V
            areturn
        end local 1 // com.oracle.truffle.tools.utils.json.JSONObject json
        end local 0 // java.lang.Boolean verified
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0  verified  Ljava/lang/Boolean;
            1    3     1      json  Lcom/oracle/truffle/tools/utils/json/JSONObject;
    MethodParameters:
          Name  Flags
      verified  
}
SourceFile: "Breakpoint.java"