public abstract class org.apache.lucene.util.automaton.RunAutomaton implements org.apache.lucene.util.Accountable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.lucene.util.automaton.RunAutomaton
  super_class: java.lang.Object
{
  private static final long BASE_RAM_BYTES;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  final org.apache.lucene.util.automaton.Automaton automaton;
    descriptor: Lorg/apache/lucene/util/automaton/Automaton;
    flags: (0x0010) ACC_FINAL

  final int alphabetSize;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final int size;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  final boolean[] accept;
    descriptor: [Z
    flags: (0x0010) ACC_FINAL

  final int[] transitions;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final int[] points;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final int[] classmap;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 42
            ldc Lorg/apache/lucene/util/automaton/RunAutomaton;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.util.automaton.RunAutomaton.$assertionsDisabled:Z
         3: .line 43
            ldc Lorg/apache/lucene/util/automaton/RunAutomaton;
            invokestatic org.apache.lucene.util.RamUsageEstimator.shallowSizeOfInstance:(Ljava/lang/Class;)J
            putstatic org.apache.lucene.util.automaton.RunAutomaton.BASE_RAM_BYTES:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(org.apache.lucene.util.automaton.Automaton, int);
    descriptor: (Lorg/apache/lucene/util/automaton/Automaton;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // org.apache.lucene.util.automaton.Automaton a
        start local 2 // int alphabetSize
         0: .line 61
            aload 0 /* this */
            aload 1 /* a */
            iload 2 /* alphabetSize */
            sipush 10000
            invokespecial org.apache.lucene.util.automaton.RunAutomaton.<init>:(Lorg/apache/lucene/util/automaton/Automaton;II)V
         1: .line 62
            return
        end local 2 // int alphabetSize
        end local 1 // org.apache.lucene.util.automaton.Automaton a
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0    2     1             a  Lorg/apache/lucene/util/automaton/Automaton;
            0    2     2  alphabetSize  I
    MethodParameters:
              Name  Flags
      a             
      alphabetSize  

  protected void <init>(org.apache.lucene.util.automaton.Automaton, int, int);
    descriptor: (Lorg/apache/lucene/util/automaton/Automaton;II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=4
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // org.apache.lucene.util.automaton.Automaton a
        start local 2 // int alphabetSize
        start local 3 // int maxDeterminizedStates
         0: .line 72
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 73
            aload 0 /* this */
            iload 2 /* alphabetSize */
            putfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
         2: .line 74
            aload 1 /* a */
            iload 3 /* maxDeterminizedStates */
            invokestatic org.apache.lucene.util.automaton.Operations.determinize:(Lorg/apache/lucene/util/automaton/Automaton;I)Lorg/apache/lucene/util/automaton/Automaton;
            astore 1 /* a */
         3: .line 75
            aload 0 /* this */
            aload 1 /* a */
            putfield org.apache.lucene.util.automaton.RunAutomaton.automaton:Lorg/apache/lucene/util/automaton/Automaton;
         4: .line 76
            aload 0 /* this */
            aload 1 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getStartPoints:()[I
            putfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
         5: .line 77
            aload 0 /* this */
            iconst_1
            aload 1 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.getNumStates:()I
            invokestatic java.lang.Math.max:(II)I
            putfield org.apache.lucene.util.automaton.RunAutomaton.size:I
         6: .line 78
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            newarray 4
            putfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
         7: .line 79
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            imul
            newarray 10
            putfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
         8: .line 80
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            iconst_m1
            invokestatic java.util.Arrays.fill:([II)V
         9: .line 81
            new org.apache.lucene.util.automaton.Transition
            dup
            invokespecial org.apache.lucene.util.automaton.Transition.<init>:()V
            astore 4 /* transition */
        start local 4 // org.apache.lucene.util.automaton.Transition transition
        10: .line 82
            iconst_0
            istore 5 /* n */
        start local 5 // int n
        11: goto 23
        12: .line 83
      StackMap locals: org.apache.lucene.util.automaton.RunAutomaton org.apache.lucene.util.automaton.Automaton int int org.apache.lucene.util.automaton.Transition int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            iload 5 /* n */
            aload 1 /* a */
            iload 5 /* n */
            invokevirtual org.apache.lucene.util.automaton.Automaton.isAccept:(I)Z
            bastore
        13: .line 84
            aload 4 /* transition */
            iload 5 /* n */
            putfield org.apache.lucene.util.automaton.Transition.source:I
        14: .line 85
            aload 4 /* transition */
            iconst_m1
            putfield org.apache.lucene.util.automaton.Transition.transitionUpto:I
        15: .line 86
            iconst_0
            istore 6 /* c */
        start local 6 // int c
        16: goto 21
        17: .line 87
      StackMap locals: int
      StackMap stack:
            aload 1 /* a */
            aload 4 /* transition */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 6 /* c */
            iaload
            invokevirtual org.apache.lucene.util.automaton.Automaton.next:(Lorg/apache/lucene/util/automaton/Transition;I)I
            istore 7 /* dest */
        start local 7 // int dest
        18: .line 88
            getstatic org.apache.lucene.util.automaton.RunAutomaton.$assertionsDisabled:Z
            ifne 19
            iload 7 /* dest */
            iconst_m1
            if_icmpeq 19
            iload 7 /* dest */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            if_icmplt 19
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        19: .line 89
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            iload 5 /* n */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            imul
            iload 6 /* c */
            iadd
            iload 7 /* dest */
            iastore
        end local 7 // int dest
        20: .line 86
            iinc 6 /* c */ 1
      StackMap locals:
      StackMap stack:
        21: iload 6 /* c */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            if_icmplt 17
        end local 6 // int c
        22: .line 82
            iinc 5 /* n */ 1
      StackMap locals:
      StackMap stack:
        23: iload 5 /* n */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            if_icmplt 12
        end local 5 // int n
        24: .line 96
            aload 0 /* this */
            sipush 256
            iload 2 /* alphabetSize */
            invokestatic java.lang.Math.min:(II)I
            newarray 10
            putfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
        25: .line 97
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        26: .line 98
            iconst_0
            istore 6 /* j */
        start local 6 // int j
        27: goto 32
        28: .line 99
      StackMap locals: int
      StackMap stack:
            iload 5 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            if_icmpge 30
            iload 6 /* j */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 5 /* i */
            iconst_1
            iadd
            iaload
            if_icmpne 30
        29: .line 100
            iinc 5 /* i */ 1
        30: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
            iload 6 /* j */
            iload 5 /* i */
            iastore
        31: .line 98
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        32: iload 6 /* j */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
            arraylength
            if_icmplt 28
        end local 6 // int j
        33: .line 104
            return
        end local 5 // int i
        end local 4 // org.apache.lucene.util.automaton.Transition transition
        end local 3 // int maxDeterminizedStates
        end local 2 // int alphabetSize
        end local 1 // org.apache.lucene.util.automaton.Automaton a
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   34     0                   this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0   34     1                      a  Lorg/apache/lucene/util/automaton/Automaton;
            0   34     2           alphabetSize  I
            0   34     3  maxDeterminizedStates  I
           10   34     4             transition  Lorg/apache/lucene/util/automaton/Transition;
           11   24     5                      n  I
           16   22     6                      c  I
           18   20     7                   dest  I
           26   34     5                      i  I
           27   33     6                      j  I
    MethodParameters:
                       Name  Flags
      a                      
      alphabetSize           
      maxDeterminizedStates  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
         0: .line 111
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* b */
        start local 1 // java.lang.StringBuilder b
         1: .line 112
            aload 1 /* b */
            ldc "initial state: 0\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 113
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         3: goto 24
         4: .line 114
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* b */
            ldc "state "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         5: .line 115
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            iload 2 /* i */
            baload
            ifeq 6
            aload 1 /* b */
            ldc " [accept]:\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
            goto 7
         6: .line 116
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc " [reject]:\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         7: .line 117
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* j */
        start local 3 // int j
         8: goto 22
         9: .line 118
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            imul
            iload 3 /* j */
            iadd
            iaload
            istore 4 /* k */
        start local 4 // int k
        10: .line 119
            iload 4 /* k */
            iconst_m1
            if_icmpeq 21
        11: .line 120
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 3 /* j */
            iaload
            istore 5 /* min */
        start local 5 // int min
        12: .line 122
            iload 3 /* j */
            iconst_1
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            if_icmpge 14
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 3 /* j */
            iconst_1
            iadd
            iaload
            iconst_1
            isub
            istore 6 /* max */
        start local 6 // int max
        13: goto 15
        end local 6 // int max
        14: .line 123
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
            istore 6 /* max */
        start local 6 // int max
        15: .line 124
      StackMap locals: int
      StackMap stack:
            aload 1 /* b */
            ldc " "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 125
            iload 5 /* min */
            aload 1 /* b */
            invokestatic org.apache.lucene.util.automaton.Automaton.appendCharString:(ILjava/lang/StringBuilder;)V
        17: .line 126
            iload 5 /* min */
            iload 6 /* max */
            if_icmpeq 20
        18: .line 127
            aload 1 /* b */
            ldc "-"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 128
            iload 6 /* max */
            aload 1 /* b */
            invokestatic org.apache.lucene.util.automaton.Automaton.appendCharString:(ILjava/lang/StringBuilder;)V
        20: .line 130
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 4 /* k */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "\n"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 6 // int max
        end local 5 // int min
        end local 4 // int k
        21: .line 117
      StackMap locals:
      StackMap stack:
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        22: iload 3 /* j */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            if_icmplt 9
        end local 3 // int j
        23: .line 113
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        24: iload 2 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            if_icmplt 4
        end local 2 // int i
        25: .line 134
            aload 1 /* b */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder b
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   26     0  this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            1   26     1     b  Ljava/lang/StringBuilder;
            3   25     2     i  I
            8   23     3     j  I
           10   21     4     k  I
           12   21     5   min  I
           13   14     6   max  I
           15   21     6   max  I

  public final int getSize();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
         0: .line 141
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            ireturn
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/RunAutomaton;

  public final boolean isAccept(int);
    descriptor: (I)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // int state
         0: .line 148
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            iload 1 /* state */
            baload
            ireturn
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0    1     1  state  I
    MethodParameters:
       Name  Flags
      state  

  public final int[] getCharIntervals();
    descriptor: ()[I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
         0: .line 156
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            areturn
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/RunAutomaton;

  final int getCharClass(int);
    descriptor: (I)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // int c
         0: .line 165
            iconst_0
            istore 2 /* a */
        start local 2 // int a
         1: .line 166
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            istore 3 /* b */
        start local 3 // int b
         2: .line 167
            goto 7
         3: .line 168
      StackMap locals: int int
      StackMap stack:
            iload 2 /* a */
            iload 3 /* b */
            iadd
            iconst_1
            iushr
            istore 4 /* d */
        start local 4 // int d
         4: .line 169
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 4 /* d */
            iaload
            iload 1 /* c */
            if_icmple 5
            iload 4 /* d */
            istore 3 /* b */
            goto 7
         5: .line 170
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            iload 4 /* d */
            iaload
            iload 1 /* c */
            if_icmpge 6
            iload 4 /* d */
            istore 2 /* a */
            goto 7
         6: .line 171
      StackMap locals:
      StackMap stack:
            iload 4 /* d */
            ireturn
        end local 4 // int d
         7: .line 167
      StackMap locals:
      StackMap stack:
            iload 3 /* b */
            iload 2 /* a */
            isub
            iconst_1
            if_icmpgt 3
         8: .line 173
            iload 2 /* a */
            ireturn
        end local 3 // int b
        end local 2 // int a
        end local 1 // int c
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0    9     1     c  I
            1    9     2     a  I
            2    9     3     b  I
            4    7     4     d  I
    MethodParameters:
      Name  Flags
      c     

  public final int step(int, int);
    descriptor: (II)I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // int state
        start local 2 // int c
         0: .line 184
            getstatic org.apache.lucene.util.automaton.RunAutomaton.$assertionsDisabled:Z
            ifne 1
            iload 2 /* c */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
            if_icmplt 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 185
      StackMap locals:
      StackMap stack:
            iload 2 /* c */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
            arraylength
            if_icmplt 3
         2: .line 186
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            imul
            aload 0 /* this */
            iload 2 /* c */
            invokevirtual org.apache.lucene.util.automaton.RunAutomaton.getCharClass:(I)I
            iadd
            iaload
            ireturn
         3: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            iload 1 /* state */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
            iload 2 /* c */
            iaload
            iadd
            iaload
            ireturn
        end local 2 // int c
        end local 1 // int state
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0    4     1  state  I
            0    4     2      c  I
    MethodParameters:
       Name  Flags
      state  
      c      

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
         0: .line 195
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 196
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
            iadd
            istore 1 /* result */
         2: .line 197
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            arraylength
            iadd
            istore 1 /* result */
         3: .line 198
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            iadd
            istore 1 /* result */
         4: .line 199
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            1    5     1  result  I

  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 // org.apache.lucene.util.automaton.RunAutomaton this
        start local 1 // java.lang.Object obj
         0: .line 204
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 1
            iconst_1
            ireturn
         1: .line 205
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            ifnonnull 2
            iconst_0
            ireturn
         2: .line 206
      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 3
            iconst_0
            ireturn
         3: .line 207
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast org.apache.lucene.util.automaton.RunAutomaton
            astore 2 /* other */
        start local 2 // org.apache.lucene.util.automaton.RunAutomaton other
         4: .line 208
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.RunAutomaton.alphabetSize:I
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 209
      StackMap locals: org.apache.lucene.util.automaton.RunAutomaton
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.RunAutomaton.size:I
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 210
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            invokestatic java.util.Arrays.equals:([I[I)Z
            ifne 7
            iconst_0
            ireturn
         7: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            invokestatic java.util.Arrays.equals:([Z[Z)Z
            ifne 8
            iconst_0
            ireturn
         8: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            aload 2 /* other */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            invokestatic java.util.Arrays.equals:([I[I)Z
            ifne 9
            iconst_0
            ireturn
         9: .line 213
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.apache.lucene.util.automaton.RunAutomaton other
        end local 1 // java.lang.Object obj
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/apache/lucene/util/automaton/RunAutomaton;
            0   10     1    obj  Ljava/lang/Object;
            4   10     2  other  Lorg/apache/lucene/util/automaton/RunAutomaton;
    MethodParameters:
      Name  Flags
      obj   

  public long ramBytesUsed();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.lucene.util.automaton.RunAutomaton this
         0: .line 218
            getstatic org.apache.lucene.util.automaton.RunAutomaton.BASE_RAM_BYTES:J
         1: .line 219
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.accept:[Z
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOfObject:(Ljava/lang/Object;)J
         2: .line 218
            ladd
         3: .line 220
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.automaton:Lorg/apache/lucene/util/automaton/Automaton;
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOfObject:(Ljava/lang/Object;)J
         4: .line 218
            ladd
         5: .line 221
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.classmap:[I
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOfObject:(Ljava/lang/Object;)J
         6: .line 218
            ladd
         7: .line 222
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.points:[I
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOfObject:(Ljava/lang/Object;)J
         8: .line 218
            ladd
         9: .line 223
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.RunAutomaton.transitions:[I
            invokestatic org.apache.lucene.util.RamUsageEstimator.sizeOfObject:(Ljava/lang/Object;)J
        10: .line 218
            ladd
            lreturn
        end local 0 // org.apache.lucene.util.automaton.RunAutomaton this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/apache/lucene/util/automaton/RunAutomaton;
}
SourceFile: "RunAutomaton.java"