class org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter extends org.eclipse.jgit.revwalk.filter.RevFilter
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter
  super_class: org.eclipse.jgit.revwalk.filter.RevFilter
{
  private final org.eclipse.jgit.lib.BitmapIndex repoBitmaps;
    descriptor: Lorg/eclipse/jgit/lib/BitmapIndex;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder reached;
    descriptor: Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.eclipse.jgit.lib.BitmapIndex);
    descriptor: (Lorg/eclipse/jgit/lib/BitmapIndex;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
        start local 1 // org.eclipse.jgit.lib.BitmapIndex repoBitmaps
         0: .line 112
            aload 0 /* this */
            invokespecial org.eclipse.jgit.revwalk.filter.RevFilter.<init>:()V
         1: .line 113
            aload 0 /* this */
            aload 1 /* repoBitmaps */
            putfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.repoBitmaps:Lorg/eclipse/jgit/lib/BitmapIndex;
         2: .line 114
            aload 0 /* this */
            aload 1 /* repoBitmaps */
            invokeinterface org.eclipse.jgit.lib.BitmapIndex.newBitmapBuilder:()Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            putfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.reached:Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
         3: .line 115
            return
        end local 1 // org.eclipse.jgit.lib.BitmapIndex repoBitmaps
        end local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/eclipse/jgit/revwalk/BitmappedReachabilityChecker$ReachedFilter;
            0    4     1  repoBitmaps  Lorg/eclipse/jgit/lib/BitmapIndex;
    MethodParameters:
             Name  Flags
      repoBitmaps  

  public final boolean include(org.eclipse.jgit.revwalk.RevWalk, org.eclipse.jgit.revwalk.RevCommit);
    descriptor: (Lorg/eclipse/jgit/revwalk/RevWalk;Lorg/eclipse/jgit/revwalk/RevCommit;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
        start local 1 // org.eclipse.jgit.revwalk.RevWalk walker
        start local 2 // org.eclipse.jgit.revwalk.RevCommit cmit
         0: .line 122
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.reached:Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            aload 2 /* cmit */
            invokeinterface org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder.contains:(Lorg/eclipse/jgit/lib/AnyObjectId;)Z
            ifeq 3
         1: .line 124
            aload 2 /* cmit */
            invokestatic org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.dontFollow:(Lorg/eclipse/jgit/revwalk/RevCommit;)V
         2: .line 125
            iconst_0
            ireturn
         3: .line 128
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.repoBitmaps:Lorg/eclipse/jgit/lib/BitmapIndex;
            aload 2 /* cmit */
            invokeinterface org.eclipse.jgit.lib.BitmapIndex.getBitmap:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/lib/BitmapIndex$Bitmap;
            dup
            astore 3 /* commitBitmap */
        start local 3 // org.eclipse.jgit.lib.BitmapIndex$Bitmap commitBitmap
         4: ifnull 8
         5: .line 129
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.reached:Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            aload 3 /* commitBitmap */
            invokeinterface org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder.or:(Lorg/eclipse/jgit/lib/BitmapIndex$Bitmap;)Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            pop
         6: .line 132
            aload 2 /* cmit */
            invokestatic org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.dontFollow:(Lorg/eclipse/jgit/revwalk/RevCommit;)V
         7: .line 133
            iconst_1
            ireturn
         8: .line 137
      StackMap locals: org.eclipse.jgit.lib.BitmapIndex$Bitmap
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.reached:Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            aload 2 /* cmit */
            iconst_1
            invokeinterface org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder.addObject:(Lorg/eclipse/jgit/lib/AnyObjectId;I)Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            pop
         9: .line 138
            iconst_1
            ireturn
        end local 3 // org.eclipse.jgit.lib.BitmapIndex$Bitmap commitBitmap
        end local 2 // org.eclipse.jgit.revwalk.RevCommit cmit
        end local 1 // org.eclipse.jgit.revwalk.RevWalk walker
        end local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   10     0          this  Lorg/eclipse/jgit/revwalk/BitmappedReachabilityChecker$ReachedFilter;
            0   10     1        walker  Lorg/eclipse/jgit/revwalk/RevWalk;
            0   10     2          cmit  Lorg/eclipse/jgit/revwalk/RevCommit;
            4   10     3  commitBitmap  Lorg/eclipse/jgit/lib/BitmapIndex$Bitmap;
    MethodParameters:
        Name  Flags
      walker  
      cmit    

  private static final void dontFollow(org.eclipse.jgit.revwalk.RevCommit);
    descriptor: (Lorg/eclipse/jgit/revwalk/RevCommit;)V
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Code:
      stack=2, locals=5, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.RevCommit cmit
         0: .line 142
            aload 0 /* cmit */
            invokevirtual org.eclipse.jgit.revwalk.RevCommit.getParents:()[Lorg/eclipse/jgit/revwalk/RevCommit;
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: org.eclipse.jgit.revwalk.RevCommit top int int org.eclipse.jgit.revwalk.RevCommit[]
      StackMap stack:
         1: aload 4
            iload 2
            aaload
            astore 1 /* p */
        start local 1 // org.eclipse.jgit.revwalk.RevCommit p
         2: .line 143
            aload 1 /* p */
            getstatic org.eclipse.jgit.revwalk.RevFlag.SEEN:Lorg/eclipse/jgit/revwalk/RevFlag;
            invokevirtual org.eclipse.jgit.revwalk.RevCommit.add:(Lorg/eclipse/jgit/revwalk/RevFlag;)V
        end local 1 // org.eclipse.jgit.revwalk.RevCommit p
         3: .line 142
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 145
            return
        end local 0 // org.eclipse.jgit.revwalk.RevCommit cmit
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  cmit  Lorg/eclipse/jgit/revwalk/RevCommit;
            2    3     1     p  Lorg/eclipse/jgit/revwalk/RevCommit;
    MethodParameters:
      Name  Flags
      cmit  

  public final org.eclipse.jgit.revwalk.filter.RevFilter clone();
    descriptor: ()Lorg/eclipse/jgit/revwalk/filter/RevFilter;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
         0: .line 150
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/revwalk/BitmappedReachabilityChecker$ReachedFilter;

  public final boolean requiresCommitBody();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
         0: .line 156
            iconst_0
            ireturn
        end local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jgit/revwalk/BitmappedReachabilityChecker$ReachedFilter;

  boolean isReachable(org.eclipse.jgit.revwalk.RevCommit);
    descriptor: (Lorg/eclipse/jgit/revwalk/RevCommit;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
        start local 1 // org.eclipse.jgit.revwalk.RevCommit commit
         0: .line 160
            aload 0 /* this */
            getfield org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.reached:Lorg/eclipse/jgit/lib/BitmapIndex$BitmapBuilder;
            aload 1 /* commit */
            invokeinterface org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder.contains:(Lorg/eclipse/jgit/lib/AnyObjectId;)Z
            ireturn
        end local 1 // org.eclipse.jgit.revwalk.RevCommit commit
        end local 0 // org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jgit/revwalk/BitmappedReachabilityChecker$ReachedFilter;
            0    1     1  commit  Lorg/eclipse/jgit/revwalk/RevCommit;
    MethodParameters:
        Name  Flags
      commit  

  public java.lang.Object clone();
    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 org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter.clone:()Lorg/eclipse/jgit/revwalk/filter/RevFilter;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.lang.CloneNotSupportedException
}
SourceFile: "BitmappedReachabilityChecker.java"
NestHost: org.eclipse.jgit.revwalk.BitmappedReachabilityChecker
InnerClasses:
  public abstract Bitmap = org.eclipse.jgit.lib.BitmapIndex$Bitmap of org.eclipse.jgit.lib.BitmapIndex
  public abstract BitmapBuilder = org.eclipse.jgit.lib.BitmapIndex$BitmapBuilder of org.eclipse.jgit.lib.BitmapIndex
  private ReachedFilter = org.eclipse.jgit.revwalk.BitmappedReachabilityChecker$ReachedFilter of org.eclipse.jgit.revwalk.BitmappedReachabilityChecker