public class org.stringtemplate.v4.compiler.StringTable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.stringtemplate.v4.compiler.StringTable
  super_class: java.lang.Object
{
  protected java.util.LinkedHashMap<java.lang.String, java.lang.Integer> table;
    descriptor: Ljava/util/LinkedHashMap;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/LinkedHashMap<Ljava/lang/String;Ljava/lang/Integer;>;

  protected int i;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.stringtemplate.v4.compiler.StringTable this
         0: .line 35
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 36
            aload 0 /* this */
            new java.util.LinkedHashMap
            dup
            invokespecial java.util.LinkedHashMap.<init>:()V
            putfield org.stringtemplate.v4.compiler.StringTable.table:Ljava/util/LinkedHashMap;
         2: .line 37
            aload 0 /* this */
            iconst_m1
            putfield org.stringtemplate.v4.compiler.StringTable.i:I
         3: .line 35
            return
        end local 0 // org.stringtemplate.v4.compiler.StringTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/stringtemplate/v4/compiler/StringTable;

  public int add(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.stringtemplate.v4.compiler.StringTable this
        start local 1 // java.lang.String s
         0: .line 40
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.table:Ljava/util/LinkedHashMap;
            aload 1 /* s */
            invokevirtual java.util.LinkedHashMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Integer
            astore 2 /* I */
        start local 2 // java.lang.Integer I
         1: .line 41
            aload 2 /* I */
            ifnull 2
            aload 2 /* I */
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
         2: .line 42
      StackMap locals: java.lang.Integer
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.stringtemplate.v4.compiler.StringTable.i:I
            iconst_1
            iadd
            putfield org.stringtemplate.v4.compiler.StringTable.i:I
         3: .line 43
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.table:Ljava/util/LinkedHashMap;
            aload 1 /* s */
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.i:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.util.LinkedHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 44
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.i:I
            ireturn
        end local 2 // java.lang.Integer I
        end local 1 // java.lang.String s
        end local 0 // org.stringtemplate.v4.compiler.StringTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/stringtemplate/v4/compiler/StringTable;
            0    5     1     s  Ljava/lang/String;
            1    5     2     I  Ljava/lang/Integer;
    MethodParameters:
      Name  Flags
      s     

  public java.lang.String[] toArray();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.stringtemplate.v4.compiler.StringTable this
         0: .line 48
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.table:Ljava/util/LinkedHashMap;
            invokevirtual java.util.LinkedHashMap.size:()I
            anewarray java.lang.String
            astore 1 /* a */
        start local 1 // java.lang.String[] a
         1: .line 49
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: .line 50
            aload 0 /* this */
            getfield org.stringtemplate.v4.compiler.StringTable.table:Ljava/util/LinkedHashMap;
            invokevirtual java.util.LinkedHashMap.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 5
      StackMap locals: org.stringtemplate.v4.compiler.StringTable java.lang.String[] int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* s */
        start local 3 // java.lang.String s
         4: aload 1 /* a */
            iload 2 /* i */
            iinc 2 /* i */ 1
            aload 3 /* s */
            aastore
        end local 3 // java.lang.String s
      StackMap locals:
      StackMap stack:
         5: aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 51
            aload 1 /* a */
            areturn
        end local 2 // int i
        end local 1 // java.lang.String[] a
        end local 0 // org.stringtemplate.v4.compiler.StringTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/stringtemplate/v4/compiler/StringTable;
            1    7     1     a  [Ljava/lang/String;
            2    7     2     i  I
            4    5     3     s  Ljava/lang/String;
}
SourceFile: "StringTable.java"