public class org.jf.baksmali.DumpCommand extends org.jf.baksmali.DexInputCommand
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jf.baksmali.DumpCommand
  super_class: org.jf.baksmali.DexInputCommand
{
  private boolean help;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE
    RuntimeVisibleAnnotations: 
      com.beust.jcommander.Parameter(names = {"-h", "-?", "--help"}, help = true, description = "Show usage information for this command.")

  public void <init>(java.util.List<com.beust.jcommander.JCommander>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.jf.baksmali.DumpCommand this
        start local 1 // java.util.List commandAncestors
         0: .line 57
            aload 0 /* this */
            aload 1 /* commandAncestors */
            invokespecial org.jf.baksmali.DexInputCommand.<init>:(Ljava/util/List;)V
         1: .line 58
            return
        end local 1 // java.util.List commandAncestors
        end local 0 // org.jf.baksmali.DumpCommand this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/jf/baksmali/DumpCommand;
            0    2     1  commandAncestors  Ljava/util/List<Lcom/beust/jcommander/JCommander;>;
    Signature: (Ljava/util/List<Lcom/beust/jcommander/JCommander;>;)V
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nonnull()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nonnull()
    MethodParameters:
                  Name  Flags
      commandAncestors  

  public void run();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.jf.baksmali.DumpCommand this
         0: .line 61
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.help:Z
            ifne 1
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.inputList:Ljava/util/List;
            ifnull 1
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.inputList:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 3
         1: .line 62
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.jf.baksmali.DumpCommand.usage:()V
         2: .line 63
            return
         3: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.inputList:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            if_icmple 7
         4: .line 67
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            ldc "Too many files specified"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         5: .line 68
            aload 0 /* this */
            invokevirtual org.jf.baksmali.DumpCommand.usage:()V
         6: .line 69
            return
         7: .line 72
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.inputList:Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 1 /* input */
        start local 1 // java.lang.String input
         8: .line 73
            aload 0 /* this */
            aload 1 /* input */
            invokevirtual org.jf.baksmali.DumpCommand.loadDexFile:(Ljava/lang/String;)V
         9: .line 76
            aload 0 /* this */
            getfield org.jf.baksmali.DumpCommand.dexFile:Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokestatic org.jf.baksmali.DumpCommand.dump:(Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;Ljava/io/OutputStream;)V
        10: .line 77
            goto 14
      StackMap locals: org.jf.baksmali.DumpCommand java.lang.String
      StackMap stack: java.io.IOException
        11: astore 2 /* ex */
        start local 2 // java.io.IOException ex
        12: .line 78
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            ldc "There was an error while dumping the dex file"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        13: .line 79
            aload 2 /* ex */
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            invokevirtual java.io.IOException.printStackTrace:(Ljava/io/PrintStream;)V
        end local 2 // java.io.IOException ex
        14: .line 81
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String input
        end local 0 // org.jf.baksmali.DumpCommand this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lorg/jf/baksmali/DumpCommand;
            8   15     1  input  Ljava/lang/String;
           12   14     2     ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           9    10      11  Class java.io.IOException

  public static void dump(org.jf.dexlib2.dexbacked.DexBackedDexFile, java.io.OutputStream);
    descriptor: (Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;Ljava/io/OutputStream;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.jf.dexlib2.dexbacked.DexBackedDexFile dexFile
        start local 1 // java.io.OutputStream output
         0: .line 94
            new java.io.BufferedWriter
            dup
            new java.io.OutputStreamWriter
            dup
            aload 1 /* output */
            invokespecial java.io.OutputStreamWriter.<init>:(Ljava/io/OutputStream;)V
            invokespecial java.io.BufferedWriter.<init>:(Ljava/io/Writer;)V
            astore 2 /* writer */
        start local 2 // java.io.Writer writer
         1: .line 97
            invokestatic org.jf.util.ConsoleUtil.getConsoleWidth:()I
            istore 3 /* consoleWidth */
        start local 3 // int consoleWidth
         2: .line 98
            iload 3 /* consoleWidth */
            ifgt 4
         3: .line 99
            bipush 120
            istore 3 /* consoleWidth */
         4: .line 102
      StackMap locals: java.io.Writer int
      StackMap stack:
            new org.jf.dexlib2.dexbacked.raw.util.DexAnnotator
            dup
            aload 0 /* dexFile */
            iload 3 /* consoleWidth */
            invokespecial org.jf.dexlib2.dexbacked.raw.util.DexAnnotator.<init>:(Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;I)V
            astore 4 /* annotator */
        start local 4 // org.jf.dexlib2.dexbacked.raw.util.DexAnnotator annotator
         5: .line 103
            aload 4 /* annotator */
            aload 2 /* writer */
            invokevirtual org.jf.dexlib2.dexbacked.raw.util.DexAnnotator.writeAnnotations:(Ljava/io/Writer;)V
        end local 4 // org.jf.dexlib2.dexbacked.raw.util.DexAnnotator annotator
        end local 3 // int consoleWidth
         6: .line 104
            goto 10
      StackMap locals: org.jf.dexlib2.dexbacked.DexBackedDexFile java.io.OutputStream java.io.Writer
      StackMap stack: java.lang.Throwable
         7: astore 5
         8: .line 105
            aload 2 /* writer */
            invokevirtual java.io.Writer.close:()V
         9: .line 106
            aload 5
            athrow
        10: .line 105
      StackMap locals:
      StackMap stack:
            aload 2 /* writer */
            invokevirtual java.io.Writer.close:()V
        11: .line 107
            return
        end local 2 // java.io.Writer writer
        end local 1 // java.io.OutputStream output
        end local 0 // org.jf.dexlib2.dexbacked.DexBackedDexFile dexFile
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   12     0       dexFile  Lorg/jf/dexlib2/dexbacked/DexBackedDexFile;
            0   12     1        output  Ljava/io/OutputStream;
            1   12     2        writer  Ljava/io/Writer;
            2    6     3  consoleWidth  I
            5    6     4     annotator  Lorg/jf/dexlib2/dexbacked/raw/util/DexAnnotator;
      Exception table:
        from    to  target  type
           1     7       7  any
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nonnull()
      METHOD_FORMAL_PARAMETER
        javax.annotation.Nonnull()
    RuntimeVisibleParameterAnnotations: 
      0:
        javax.annotation.Nonnull()
      1:
        javax.annotation.Nonnull()
    MethodParameters:
         Name  Flags
      dexFile  
      output   
}
SourceFile: "DumpCommand.java"
    RuntimeVisibleAnnotations: 
      com.beust.jcommander.Parameters(commandDescription = "Prints an annotated hex dump for the given dex file")
      org.jf.util.jcommander.ExtendedParameters(commandName = "dump", commandAliases = {"du"})