abstract class com.oracle.truffle.api.debug.BreakpointLocation
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.oracle.truffle.api.debug.BreakpointLocation
  super_class: java.lang.Object
{
  protected final com.oracle.truffle.api.debug.SourceElement[] sourceElements;
    descriptor: [Lcom/oracle/truffle/api/debug/SourceElement;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  static final com.oracle.truffle.api.debug.BreakpointLocation ANY;
    descriptor: Lcom/oracle/truffle/api/debug/BreakpointLocation;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static final java.net.URI ANY_SOURCE;
    descriptor: Ljava/net/URI;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 74
            new com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation
            dup
            invokespecial com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation.<init>:()V
            putstatic com.oracle.truffle.api.debug.BreakpointLocation.ANY:Lcom/oracle/truffle/api/debug/BreakpointLocation;
         1: .line 76
            ldc ""
            invokestatic java.net.URI.create:(Ljava/lang/String;)Ljava/net/URI;
            putstatic com.oracle.truffle.api.debug.BreakpointLocation.ANY_SOURCE:Ljava/net/URI;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(com.oracle.truffle.api.debug.SourceElement[]);
    descriptor: ([Lcom/oracle/truffle/api/debug/SourceElement;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.debug.BreakpointLocation this
        start local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
         0: .line 67
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 68
            aload 0 /* this */
            aload 1 /* sourceElements */
            putfield com.oracle.truffle.api.debug.BreakpointLocation.sourceElements:[Lcom/oracle/truffle/api/debug/SourceElement;
         2: .line 69
            return
        end local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        end local 0 // com.oracle.truffle.api.debug.BreakpointLocation this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lcom/oracle/truffle/api/debug/BreakpointLocation;
            0    3     1  sourceElements  [Lcom/oracle/truffle/api/debug/SourceElement;
    MethodParameters:
                Name  Flags
      sourceElements  

  static com.oracle.truffle.api.debug.BreakpointLocation create(java.lang.Object, com.oracle.truffle.api.debug.SourceElement[], com.oracle.truffle.api.source.SourceSection);
    descriptor: (Ljava/lang/Object;[Lcom/oracle/truffle/api/debug/SourceElement;Lcom/oracle/truffle/api/source/SourceSection;)Lcom/oracle/truffle/api/debug/BreakpointLocation;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // java.lang.Object key
        start local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        start local 2 // com.oracle.truffle.api.source.SourceSection sourceSection
         0: .line 79
            new com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation
            dup
            aload 0 /* key */
            aload 1 /* sourceElements */
            aload 2 /* sourceSection */
            invokespecial com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation.<init>:(Ljava/lang/Object;[Lcom/oracle/truffle/api/debug/SourceElement;Lcom/oracle/truffle/api/source/SourceSection;)V
            areturn
        end local 2 // com.oracle.truffle.api.source.SourceSection sourceSection
        end local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0             key  Ljava/lang/Object;
            0    1     1  sourceElements  [Lcom/oracle/truffle/api/debug/SourceElement;
            0    1     2   sourceSection  Lcom/oracle/truffle/api/source/SourceSection;
    MethodParameters:
                Name  Flags
      key             
      sourceElements  
      sourceSection   

  static com.oracle.truffle.api.debug.BreakpointLocation create(java.lang.Object, com.oracle.truffle.api.debug.SourceElement[], int, int);
    descriptor: (Ljava/lang/Object;[Lcom/oracle/truffle/api/debug/SourceElement;II)Lcom/oracle/truffle/api/debug/BreakpointLocation;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // java.lang.Object key
        start local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        start local 2 // int line
        start local 3 // int column
         0: .line 83
            new com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation
            dup
            aload 0 /* key */
            aload 1 /* sourceElements */
            iload 2 /* line */
            iload 3 /* column */
            invokespecial com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation.<init>:(Ljava/lang/Object;[Lcom/oracle/truffle/api/debug/SourceElement;II)V
            areturn
        end local 3 // int column
        end local 2 // int line
        end local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0             key  Ljava/lang/Object;
            0    1     1  sourceElements  [Lcom/oracle/truffle/api/debug/SourceElement;
            0    1     2            line  I
            0    1     3          column  I
    MethodParameters:
                Name  Flags
      key             
      sourceElements  
      line            
      column          

  static com.oracle.truffle.api.debug.BreakpointLocation create(com.oracle.truffle.api.debug.SourceElement[], com.oracle.truffle.api.debug.SuspensionFilter);
    descriptor: ([Lcom/oracle/truffle/api/debug/SourceElement;Lcom/oracle/truffle/api/debug/SuspensionFilter;)Lcom/oracle/truffle/api/debug/BreakpointLocation;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        start local 1 // com.oracle.truffle.api.debug.SuspensionFilter filter
         0: .line 87
            new com.oracle.truffle.api.debug.BreakpointLocation$BreakpointFilteredLocation
            dup
            aload 0 /* sourceElements */
            aload 1 /* filter */
            invokespecial com.oracle.truffle.api.debug.BreakpointLocation$BreakpointFilteredLocation.<init>:([Lcom/oracle/truffle/api/debug/SourceElement;Lcom/oracle/truffle/api/debug/SuspensionFilter;)V
            areturn
        end local 1 // com.oracle.truffle.api.debug.SuspensionFilter filter
        end local 0 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    1     0  sourceElements  [Lcom/oracle/truffle/api/debug/SourceElement;
            0    1     1          filter  Lcom/oracle/truffle/api/debug/SuspensionFilter;
    MethodParameters:
                Name  Flags
      sourceElements  
      filter          

  final boolean containsRoot();
    descriptor: ()Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // com.oracle.truffle.api.debug.BreakpointLocation this
         0: .line 91
            aload 0 /* this */
            getfield com.oracle.truffle.api.debug.BreakpointLocation.sourceElements:[Lcom/oracle/truffle/api/debug/SourceElement;
            ifnonnull 2
         1: .line 92
            iconst_1
            ireturn
         2: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.api.debug.BreakpointLocation.sourceElements:[Lcom/oracle/truffle/api/debug/SourceElement;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 7
      StackMap locals: com.oracle.truffle.api.debug.BreakpointLocation top int int com.oracle.truffle.api.debug.SourceElement[]
      StackMap stack:
         3: aload 4
            iload 2
            aaload
            astore 1 /* elem */
        start local 1 // com.oracle.truffle.api.debug.SourceElement elem
         4: .line 95
            getstatic com.oracle.truffle.api.debug.SourceElement.ROOT:Lcom/oracle/truffle/api/debug/SourceElement;
            aload 1 /* elem */
            if_acmpne 6
         5: .line 96
            iconst_1
            ireturn
        end local 1 // com.oracle.truffle.api.debug.SourceElement elem
         6: .line 94
      StackMap locals:
      StackMap stack:
            iinc 2 1
      StackMap locals:
      StackMap stack:
         7: iload 2
            iload 3
            if_icmplt 3
         8: .line 99
            iconst_0
            ireturn
        end local 0 // com.oracle.truffle.api.debug.BreakpointLocation this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/oracle/truffle/api/debug/BreakpointLocation;
            4    6     1  elem  Lcom/oracle/truffle/api/debug/SourceElement;

  abstract com.oracle.truffle.api.instrumentation.SourceFilter createSourceFilter();
    descriptor: ()Lcom/oracle/truffle/api/instrumentation/SourceFilter;
    flags: (0x0400) ACC_ABSTRACT

  abstract java.util.function.Predicate<com.oracle.truffle.api.source.Source> createSourcePredicate();
    descriptor: ()Ljava/util/function/Predicate;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Ljava/util/function/Predicate<Lcom/oracle/truffle/api/source/Source;>;

  abstract boolean canAdjustLocation();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  abstract com.oracle.truffle.api.source.SourceSection adjustLocation(com.oracle.truffle.api.source.Source, com.oracle.truffle.api.instrumentation.TruffleInstrument$Env, com.oracle.truffle.api.debug.SuspendAnchor);
    descriptor: (Lcom/oracle/truffle/api/source/Source;Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;Lcom/oracle/truffle/api/debug/SuspendAnchor;)Lcom/oracle/truffle/api/source/SourceSection;
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
               Name  Flags
      source         
      env            
      suspendAnchor  

  abstract com.oracle.truffle.api.instrumentation.SourceSectionFilter createLocationFilter(com.oracle.truffle.api.source.Source, com.oracle.truffle.api.debug.SuspendAnchor);
    descriptor: (Lcom/oracle/truffle/api/source/Source;Lcom/oracle/truffle/api/debug/SuspendAnchor;)Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter;
    flags: (0x0400) ACC_ABSTRACT
    MethodParameters:
               Name  Flags
      source         
      suspendAnchor  

  private static void setTags(com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder, com.oracle.truffle.api.debug.SourceElement[]);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;[Lcom/oracle/truffle/api/debug/SourceElement;)V
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder f
        start local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
         0: .line 113
            aload 1 /* sourceElements */
            arraylength
            anewarray java.lang.Class
            astore 2 /* elementTags */
        start local 2 // java.lang.Class[] elementTags
         1: .line 114
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 115
      StackMap locals: java.lang.Class[] int
      StackMap stack:
            aload 2 /* elementTags */
            iload 3 /* i */
            aload 1 /* sourceElements */
            iload 3 /* i */
            aaload
            invokevirtual com.oracle.truffle.api.debug.SourceElement.getTag:()Ljava/lang/Class;
            aastore
         4: .line 114
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 2 /* elementTags */
            arraylength
            if_icmplt 3
        end local 3 // int i
         6: .line 117
            aload 0 /* f */
            aload 2 /* elementTags */
            invokevirtual com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder.tagIs:([Ljava/lang/Class;)Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;
            pop
         7: .line 118
            return
        end local 2 // java.lang.Class[] elementTags
        end local 1 // com.oracle.truffle.api.debug.SourceElement[] sourceElements
        end local 0 // com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder f
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    8     0               f  Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;
            0    8     1  sourceElements  [Lcom/oracle/truffle/api/debug/SourceElement;
            1    8     2     elementTags  [Ljava/lang/Class;
            2    6     3               i  I
    MethodParameters:
                Name  Flags
      f               
      sourceElements  
}
SourceFile: "BreakpointLocation.java"
NestMembers:
  com.oracle.truffle.api.debug.BreakpointLocation$BreakpointFilteredLocation  com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation  com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation$1  com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation$2  com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation$3
InnerClasses:
  private final BreakpointFilteredLocation = com.oracle.truffle.api.debug.BreakpointLocation$BreakpointFilteredLocation of com.oracle.truffle.api.debug.BreakpointLocation
  private final BreakpointSourceLocation = com.oracle.truffle.api.debug.BreakpointLocation$BreakpointSourceLocation of com.oracle.truffle.api.debug.BreakpointLocation
  public final Builder = com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder of com.oracle.truffle.api.instrumentation.SourceSectionFilter
  public final Env = com.oracle.truffle.api.instrumentation.TruffleInstrument$Env of com.oracle.truffle.api.instrumentation.TruffleInstrument