public class org.eclipse.jgit.api.StashListCommand extends org.eclipse.jgit.api.GitCommand<java.util.Collection<org.eclipse.jgit.revwalk.RevCommit>>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jgit.api.StashListCommand
  super_class: org.eclipse.jgit.api.GitCommand
{
  public void <init>(org.eclipse.jgit.lib.Repository);
    descriptor: (Lorg/eclipse/jgit/lib/Repository;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jgit.api.StashListCommand this
        start local 1 // org.eclipse.jgit.lib.Repository repo
         0: .line 43
            aload 0 /* this */
            aload 1 /* repo */
            invokespecial org.eclipse.jgit.api.GitCommand.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
         1: .line 44
            return
        end local 1 // org.eclipse.jgit.lib.Repository repo
        end local 0 // org.eclipse.jgit.api.StashListCommand this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jgit/api/StashListCommand;
            0    2     1  repo  Lorg/eclipse/jgit/lib/Repository;
    MethodParameters:
      Name  Flags
      repo  

  public java.util.Collection<org.eclipse.jgit.revwalk.RevCommit> call();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=10, args_size=1
        start local 0 // org.eclipse.jgit.api.StashListCommand this
         0: .line 50
            aload 0 /* this */
            invokevirtual org.eclipse.jgit.api.StashListCommand.checkCallable:()V
         1: .line 53
            aload 0 /* this */
            getfield org.eclipse.jgit.api.StashListCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            ldc "refs/stash"
            invokevirtual org.eclipse.jgit.lib.Repository.exactRef:(Ljava/lang/String;)Lorg/eclipse/jgit/lib/Ref;
            ifnonnull 10
         2: .line 54
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
         3: areturn
         4: .line 55
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         5: .line 56
            new org.eclipse.jgit.api.errors.InvalidRefNameException
            dup
         6: .line 57
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.cannotRead:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "refs/stash"
            aastore
         7: .line 56
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
         8: .line 57
            aload 1 /* e */
         9: .line 56
            invokespecial org.eclipse.jgit.api.errors.InvalidRefNameException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException e
        10: .line 60
      StackMap locals:
      StackMap stack:
            new org.eclipse.jgit.api.ReflogCommand
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.StashListCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokespecial org.eclipse.jgit.api.ReflogCommand.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            astore 1 /* refLog */
        start local 1 // org.eclipse.jgit.api.ReflogCommand refLog
        11: .line 61
            aload 1 /* refLog */
            ldc "refs/stash"
            invokevirtual org.eclipse.jgit.api.ReflogCommand.setRef:(Ljava/lang/String;)Lorg/eclipse/jgit/api/ReflogCommand;
            pop
        12: .line 62
            aload 1 /* refLog */
            invokevirtual org.eclipse.jgit.api.ReflogCommand.call:()Ljava/util/Collection;
            astore 2 /* stashEntries */
        start local 2 // java.util.Collection stashEntries
        13: .line 63
            aload 2 /* stashEntries */
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 15
        14: .line 64
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
        15: .line 66
      StackMap locals: org.eclipse.jgit.api.ReflogCommand java.util.Collection
      StackMap stack:
            new java.util.ArrayList
            dup
        16: .line 67
            aload 2 /* stashEntries */
            invokeinterface java.util.Collection.size:()I
        17: .line 66
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 3 /* stashCommits */
        start local 3 // java.util.List stashCommits
        18: .line 68
            aconst_null
            astore 4
            aconst_null
            astore 5
        19: new org.eclipse.jgit.revwalk.RevWalk
            dup
            aload 0 /* this */
            getfield org.eclipse.jgit.api.StashListCommand.repo:Lorg/eclipse/jgit/lib/Repository;
            invokespecial org.eclipse.jgit.revwalk.RevWalk.<init>:(Lorg/eclipse/jgit/lib/Repository;)V
            astore 6 /* walk */
        start local 6 // org.eclipse.jgit.revwalk.RevWalk walk
        20: .line 69
            aload 2 /* stashEntries */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 8
            goto 30
      StackMap locals: org.eclipse.jgit.api.StashListCommand org.eclipse.jgit.api.ReflogCommand java.util.Collection java.util.List java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk top java.util.Iterator
      StackMap stack:
        21: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jgit.lib.ReflogEntry
            astore 7 /* entry */
        start local 7 // org.eclipse.jgit.lib.ReflogEntry entry
        22: .line 71
            aload 3 /* stashCommits */
            aload 6 /* walk */
            aload 7 /* entry */
            invokeinterface org.eclipse.jgit.lib.ReflogEntry.getNewId:()Lorg/eclipse/jgit/lib/ObjectId;
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.parseCommit:(Lorg/eclipse/jgit/lib/AnyObjectId;)Lorg/eclipse/jgit/revwalk/RevCommit;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        23: .line 72
            goto 30
      StackMap locals: org.eclipse.jgit.api.StashListCommand org.eclipse.jgit.api.ReflogCommand java.util.Collection java.util.List java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk org.eclipse.jgit.lib.ReflogEntry java.util.Iterator
      StackMap stack: java.io.IOException
        24: astore 9 /* e */
        start local 9 // java.io.IOException e
        25: .line 73
            new org.eclipse.jgit.api.errors.JGitInternalException
            dup
        26: .line 74
            invokestatic org.eclipse.jgit.internal.JGitText.get:()Lorg/eclipse/jgit/internal/JGitText;
            getfield org.eclipse.jgit.internal.JGitText.cannotReadCommit:Ljava/lang/String;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 7 /* entry */
            invokeinterface org.eclipse.jgit.lib.ReflogEntry.getNewId:()Lorg/eclipse/jgit/lib/ObjectId;
            aastore
        27: .line 73
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        28: .line 75
            aload 9 /* e */
        29: .line 73
            invokespecial org.eclipse.jgit.api.errors.JGitInternalException.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 9 // java.io.IOException e
        end local 7 // org.eclipse.jgit.lib.ReflogEntry entry
        30: .line 69
      StackMap locals: org.eclipse.jgit.api.StashListCommand org.eclipse.jgit.api.ReflogCommand java.util.Collection java.util.List java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 21
        31: .line 78
            aload 6 /* walk */
            ifnull 37
            aload 6 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
            goto 37
      StackMap locals: org.eclipse.jgit.api.StashListCommand org.eclipse.jgit.api.ReflogCommand java.util.Collection java.util.List java.lang.Throwable java.lang.Throwable org.eclipse.jgit.revwalk.RevWalk
      StackMap stack: java.lang.Throwable
        32: astore 4
            aload 6 /* walk */
            ifnull 33
            aload 6 /* walk */
            invokevirtual org.eclipse.jgit.revwalk.RevWalk.close:()V
        end local 6 // org.eclipse.jgit.revwalk.RevWalk walk
      StackMap locals:
      StackMap stack:
        33: aload 4
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        34: astore 5
            aload 4
            ifnonnull 35
            aload 5
            astore 4
            goto 36
      StackMap locals:
      StackMap stack:
        35: aload 4
            aload 5
            if_acmpeq 36
            aload 4
            aload 5
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        36: aload 4
            athrow
        37: .line 79
      StackMap locals:
      StackMap stack:
            aload 3 /* stashCommits */
            areturn
        end local 3 // java.util.List stashCommits
        end local 2 // java.util.Collection stashEntries
        end local 1 // org.eclipse.jgit.api.ReflogCommand refLog
        end local 0 // org.eclipse.jgit.api.StashListCommand this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   38     0          this  Lorg/eclipse/jgit/api/StashListCommand;
            5   10     1             e  Ljava/io/IOException;
           11   38     1        refLog  Lorg/eclipse/jgit/api/ReflogCommand;
           13   38     2  stashEntries  Ljava/util/Collection<Lorg/eclipse/jgit/lib/ReflogEntry;>;
           18   38     3  stashCommits  Ljava/util/List<Lorg/eclipse/jgit/revwalk/RevCommit;>;
           20   33     6          walk  Lorg/eclipse/jgit/revwalk/RevWalk;
           22   30     7         entry  Lorg/eclipse/jgit/lib/ReflogEntry;
           25   30     9             e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException
          22    23      24  Class java.io.IOException
          20    31      32  any
          19    34      34  any
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException, org.eclipse.jgit.api.errors.InvalidRefNameException
    Signature: ()Ljava/util/Collection<Lorg/eclipse/jgit/revwalk/RevCommit;>;

  public java.lang.Object call();
    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.api.StashListCommand.call:()Ljava/util/Collection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.eclipse.jgit.api.errors.GitAPIException
}
Signature: Lorg/eclipse/jgit/api/GitCommand<Ljava/util/Collection<Lorg/eclipse/jgit/revwalk/RevCommit;>;>;
SourceFile: "StashListCommand.java"