public final class com.fasterxml.aalto.out.WNameTable extends com.fasterxml.aalto.util.NameTable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.aalto.out.WNameTable
  super_class: com.fasterxml.aalto.util.NameTable
{
  static final int MIN_HASH_SIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  static final int INITIAL_COLLISION_LEN;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 32

  static final int LAST_VALID_BUCKET;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 254

  final com.fasterxml.aalto.out.WNameFactory mNameFactory;
    descriptor: Lcom/fasterxml/aalto/out/WNameFactory;
    flags: (0x0010) ACC_FINAL

  final com.fasterxml.aalto.out.WNameTable mParent;
    descriptor: Lcom/fasterxml/aalto/out/WNameTable;
    flags: (0x0010) ACC_FINAL

  private int mCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mMainHashMask;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int[] mMainHash;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private com.fasterxml.aalto.out.WName[] mMainNames;
    descriptor: [Lcom/fasterxml/aalto/out/WName;
    flags: (0x0002) ACC_PRIVATE

  private com.fasterxml.aalto.out.WNameTable$Bucket[] mCollList;
    descriptor: [Lcom/fasterxml/aalto/out/WNameTable$Bucket;
    flags: (0x0002) ACC_PRIVATE

  private int mCollCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int mCollEnd;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private transient boolean mNeedRehash;
    descriptor: Z
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private boolean mMainHashShared;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mMainNamesShared;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean mCollListShared;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  protected void <init>(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // int hashSize
         0: .line 160
            aload 0 /* this */
            invokespecial com.fasterxml.aalto.util.NameTable.<init>:()V
         1: .line 162
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mNameFactory:Lcom/fasterxml/aalto/out/WNameFactory;
         2: .line 163
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mParent:Lcom/fasterxml/aalto/out/WNameTable;
         3: .line 168
            iload 1 /* hashSize */
            bipush 16
            if_icmpge 6
         4: .line 169
            bipush 16
            istore 1 /* hashSize */
         5: .line 170
            goto 12
         6: .line 174
      StackMap locals: com.fasterxml.aalto.out.WNameTable int
      StackMap stack:
            iload 1 /* hashSize */
            iload 1 /* hashSize */
            iconst_1
            isub
            iand
            ifeq 12
         7: .line 175
            bipush 16
            istore 2 /* curr */
        start local 2 // int curr
         8: .line 176
            goto 10
         9: .line 177
      StackMap locals: int
      StackMap stack:
            iload 2 /* curr */
            iload 2 /* curr */
            iadd
            istore 2 /* curr */
        10: .line 176
      StackMap locals:
      StackMap stack:
            iload 2 /* curr */
            iload 1 /* hashSize */
            if_icmplt 9
        11: .line 180
            iload 2 /* curr */
            istore 1 /* hashSize */
        end local 2 // int curr
        12: .line 184
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCount:I
        13: .line 185
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
        14: .line 186
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
        15: .line 187
            aload 0 /* this */
            iload 1 /* hashSize */
            iconst_1
            isub
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
        16: .line 188
            aload 0 /* this */
            iload 1 /* hashSize */
            newarray 10
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
        17: .line 189
            aload 0 /* this */
            iload 1 /* hashSize */
            anewarray com.fasterxml.aalto.out.WName
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
        18: .line 191
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
        19: .line 192
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
        20: .line 193
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
        21: .line 195
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
        22: .line 196
            return
        end local 1 // int hashSize
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   23     0      this  Lcom/fasterxml/aalto/out/WNameTable;
            0   23     1  hashSize  I
            8   12     2      curr  I
    MethodParameters:
          Name  Flags
      hashSize  

  private void <init>(com.fasterxml.aalto.out.WNameTable, com.fasterxml.aalto.out.WNameFactory);
    descriptor: (Lcom/fasterxml/aalto/out/WNameTable;Lcom/fasterxml/aalto/out/WNameFactory;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // com.fasterxml.aalto.out.WNameTable parent
        start local 2 // com.fasterxml.aalto.out.WNameFactory f
         0: .line 201
            aload 0 /* this */
            invokespecial com.fasterxml.aalto.util.NameTable.<init>:()V
         1: .line 203
            aload 0 /* this */
            aload 1 /* parent */
            putfield com.fasterxml.aalto.out.WNameTable.mParent:Lcom/fasterxml/aalto/out/WNameTable;
         2: .line 204
            aload 0 /* this */
            aload 2 /* f */
            putfield com.fasterxml.aalto.out.WNameTable.mNameFactory:Lcom/fasterxml/aalto/out/WNameFactory;
         3: .line 207
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            putfield com.fasterxml.aalto.out.WNameTable.mCount:I
         4: .line 208
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
         5: .line 209
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
         6: .line 210
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
         7: .line 211
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         8: .line 212
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            putfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
         9: .line 213
            aload 0 /* this */
            aload 1 /* parent */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
        10: .line 214
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
        11: .line 217
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
        12: .line 218
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
        13: .line 219
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
        14: .line 220
            return
        end local 2 // com.fasterxml.aalto.out.WNameFactory f
        end local 1 // com.fasterxml.aalto.out.WNameTable parent
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lcom/fasterxml/aalto/out/WNameTable;
            0   15     1  parent  Lcom/fasterxml/aalto/out/WNameTable;
            0   15     2       f  Lcom/fasterxml/aalto/out/WNameFactory;
    MethodParameters:
        Name  Flags
      parent  
      f       

  protected synchronized com.fasterxml.aalto.out.WNameTable createChild(com.fasterxml.aalto.out.WNameFactory);
    descriptor: (Lcom/fasterxml/aalto/out/WNameFactory;)Lcom/fasterxml/aalto/out/WNameTable;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // com.fasterxml.aalto.out.WNameFactory f
         0: .line 224
            new com.fasterxml.aalto.out.WNameTable
            dup
            aload 0 /* this */
            aload 1 /* f */
            invokespecial com.fasterxml.aalto.out.WNameTable.<init>:(Lcom/fasterxml/aalto/out/WNameTable;Lcom/fasterxml/aalto/out/WNameFactory;)V
            areturn
        end local 1 // com.fasterxml.aalto.out.WNameFactory f
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/out/WNameTable;
            0    1     1     f  Lcom/fasterxml/aalto/out/WNameFactory;
    MethodParameters:
      Name  Flags
      f     

  public boolean mergeToParent();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 229
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mParent:Lcom/fasterxml/aalto/out/WNameTable;
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.mergeFromChild:(Lcom/fasterxml/aalto/out/WNameTable;)Z
            istore 1 /* changed */
        start local 1 // boolean changed
         1: .line 233
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.markAsShared:()V
         2: .line 234
            iload 1 /* changed */
            ireturn
        end local 1 // boolean changed
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/fasterxml/aalto/out/WNameTable;
            1    3     1  changed  Z

  private synchronized boolean mergeFromChild(com.fasterxml.aalto.out.WNameTable);
    descriptor: (Lcom/fasterxml/aalto/out/WNameTable;)Z
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // com.fasterxml.aalto.out.WNameTable child
         0: .line 240
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            if_icmpgt 2
         1: .line 241
            iconst_0
            ireturn
         2: .line 245
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            putfield com.fasterxml.aalto.out.WNameTable.mCount:I
         3: .line 246
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
         4: .line 247
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
         5: .line 248
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
         6: .line 249
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         7: .line 250
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            putfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
         8: .line 251
            aload 0 /* this */
            aload 1 /* child */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
         9: .line 252
            iconst_1
            ireturn
        end local 1 // com.fasterxml.aalto.out.WNameTable child
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/fasterxml/aalto/out/WNameTable;
            0   10     1  child  Lcom/fasterxml/aalto/out/WNameTable;
    MethodParameters:
       Name  Flags
      child  

  public void markAsShared();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 257
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
         1: .line 258
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
         2: .line 259
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
         3: .line 260
            return
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/out/WNameTable;

  public void nuke();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 266
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
         1: .line 267
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
         2: .line 268
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         3: .line 269
            return
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/aalto/out/WNameTable;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 278
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            ireturn
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/aalto/out/WNameTable;

  public boolean maybeDirty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 287
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/aalto/out/WNameTable;

  public com.fasterxml.aalto.out.WName findSymbol(java.lang.String);
    descriptor: (Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // java.lang.String localName
         0: .line 293
            aload 1 /* localName */
            invokevirtual java.lang.String.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 294
            iload 2 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            iand
            istore 3 /* ix */
        start local 3 // int ix
         2: .line 295
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 3 /* ix */
            iaload
            istore 4 /* val */
        start local 4 // int val
         3: .line 300
            iload 4 /* val */
            bipush 8
            ishr
            iload 2 /* hash */
            ixor
            bipush 8
            ishl
            ifne 8
         4: .line 302
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 3 /* ix */
            aaload
            astore 5 /* wname */
        start local 5 // com.fasterxml.aalto.out.WName wname
         5: .line 303
            aload 5 /* wname */
            ifnull 8
         6: .line 304
            aload 5 /* wname */
            aload 1 /* localName */
            invokevirtual com.fasterxml.aalto.out.WName.hasName:(Ljava/lang/String;)Z
            ifeq 8
         7: .line 305
            aload 5 /* wname */
            areturn
        end local 5 // com.fasterxml.aalto.out.WName wname
         8: .line 309
      StackMap locals: int int int
      StackMap stack:
            iload 4 /* val */
            ifeq 17
         9: .line 311
            iload 4 /* val */
            sipush 255
            iand
            istore 4 /* val */
        10: .line 312
            iload 4 /* val */
            ifle 17
        11: .line 313
            iinc 4 /* val */ -1
        12: .line 314
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 4 /* val */
            aaload
            astore 5 /* bucket */
        start local 5 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        13: .line 315
            aload 5 /* bucket */
            ifnull 17
        14: .line 316
            aload 5 /* bucket */
            aload 1 /* localName */
            invokevirtual com.fasterxml.aalto.out.WNameTable$Bucket.find:(Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
            astore 6 /* name */
        start local 6 // com.fasterxml.aalto.out.WName name
        15: .line 317
            aload 6 /* name */
            ifnull 17
        16: .line 318
            aload 6 /* name */
            areturn
        end local 6 // com.fasterxml.aalto.out.WName name
        end local 5 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        17: .line 324
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mNameFactory:Lcom/fasterxml/aalto/out/WNameFactory;
            aload 1 /* localName */
            invokevirtual com.fasterxml.aalto.out.WNameFactory.constructName:(Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
            astore 5 /* name */
        start local 5 // com.fasterxml.aalto.out.WName name
        18: .line 325
            aload 0 /* this */
            aload 5 /* name */
            invokevirtual com.fasterxml.aalto.out.WNameTable.addSymbol:(Lcom/fasterxml/aalto/out/WName;)V
        19: .line 326
            aload 5 /* name */
            areturn
        end local 5 // com.fasterxml.aalto.out.WName name
        end local 4 // int val
        end local 3 // int ix
        end local 2 // int hash
        end local 1 // java.lang.String localName
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lcom/fasterxml/aalto/out/WNameTable;
            0   20     1  localName  Ljava/lang/String;
            1   20     2       hash  I
            2   20     3         ix  I
            3   20     4        val  I
            5    8     5      wname  Lcom/fasterxml/aalto/out/WName;
           13   17     5     bucket  Lcom/fasterxml/aalto/out/WNameTable$Bucket;
           15   17     6       name  Lcom/fasterxml/aalto/out/WName;
           18   20     5       name  Lcom/fasterxml/aalto/out/WName;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
           Name  Flags
      localName  

  public com.fasterxml.aalto.out.WName findSymbol(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // java.lang.String prefix
        start local 2 // java.lang.String localName
         0: .line 337
            aload 2 /* localName */
            invokevirtual java.lang.String.hashCode:()I
            aload 1 /* prefix */
            invokevirtual java.lang.String.hashCode:()I
            ixor
            istore 3 /* hash */
        start local 3 // int hash
         1: .line 338
            iload 3 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            iand
            istore 4 /* ix */
        start local 4 // int ix
         2: .line 339
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 4 /* ix */
            iaload
            istore 5 /* val */
        start local 5 // int val
         3: .line 344
            iload 5 /* val */
            bipush 8
            ishr
            iload 3 /* hash */
            ixor
            bipush 8
            ishl
            ifne 8
         4: .line 346
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 4 /* ix */
            aaload
            astore 6 /* wname */
        start local 6 // com.fasterxml.aalto.out.WName wname
         5: .line 347
            aload 6 /* wname */
            ifnull 8
         6: .line 348
            aload 6 /* wname */
            aload 1 /* prefix */
            aload 2 /* localName */
            invokevirtual com.fasterxml.aalto.out.WName.hasName:(Ljava/lang/String;Ljava/lang/String;)Z
            ifeq 8
         7: .line 349
            aload 6 /* wname */
            areturn
        end local 6 // com.fasterxml.aalto.out.WName wname
         8: .line 353
      StackMap locals: int int int
      StackMap stack:
            iload 5 /* val */
            ifeq 17
         9: .line 355
            iload 5 /* val */
            sipush 255
            iand
            istore 5 /* val */
        10: .line 356
            iload 5 /* val */
            ifle 17
        11: .line 357
            iinc 5 /* val */ -1
        12: .line 358
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 5 /* val */
            aaload
            astore 6 /* bucket */
        start local 6 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        13: .line 359
            aload 6 /* bucket */
            ifnull 17
        14: .line 360
            aload 6 /* bucket */
            aload 1 /* prefix */
            aload 2 /* localName */
            invokevirtual com.fasterxml.aalto.out.WNameTable$Bucket.find:(Ljava/lang/String;Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
            astore 7 /* name */
        start local 7 // com.fasterxml.aalto.out.WName name
        15: .line 361
            aload 7 /* name */
            ifnull 17
        16: .line 362
            aload 7 /* name */
            areturn
        end local 7 // com.fasterxml.aalto.out.WName name
        end local 6 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        17: .line 368
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mNameFactory:Lcom/fasterxml/aalto/out/WNameFactory;
            aload 1 /* prefix */
            aload 2 /* localName */
            invokevirtual com.fasterxml.aalto.out.WNameFactory.constructName:(Ljava/lang/String;Ljava/lang/String;)Lcom/fasterxml/aalto/out/WName;
            astore 6 /* name */
        start local 6 // com.fasterxml.aalto.out.WName name
        18: .line 369
            aload 0 /* this */
            aload 6 /* name */
            invokevirtual com.fasterxml.aalto.out.WNameTable.addSymbol:(Lcom/fasterxml/aalto/out/WName;)V
        19: .line 370
            aload 6 /* name */
            areturn
        end local 6 // com.fasterxml.aalto.out.WName name
        end local 5 // int val
        end local 4 // int ix
        end local 3 // int hash
        end local 2 // java.lang.String localName
        end local 1 // java.lang.String prefix
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lcom/fasterxml/aalto/out/WNameTable;
            0   20     1     prefix  Ljava/lang/String;
            0   20     2  localName  Ljava/lang/String;
            1   20     3       hash  I
            2   20     4         ix  I
            3   20     5        val  I
            5    8     6      wname  Lcom/fasterxml/aalto/out/WName;
           13   17     6     bucket  Lcom/fasterxml/aalto/out/WNameTable$Bucket;
           15   17     7       name  Lcom/fasterxml/aalto/out/WName;
           18   20     6       name  Lcom/fasterxml/aalto/out/WName;
    Exceptions:
      throws javax.xml.stream.XMLStreamException
    MethodParameters:
           Name  Flags
      prefix     
      localName  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 382
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 383
            aload 1 /* sb */
            ldc "[WNameTable, size: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 384
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         3: .line 385
            aload 1 /* sb */
            bipush 47
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 386
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         5: .line 387
            aload 1 /* sb */
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 388
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         7: .line 389
            aload 1 /* sb */
            ldc " coll; avg length: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         8: .line 395
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            istore 2 /* pathCount */
        start local 2 // int pathCount
         9: .line 396
            iconst_0
            istore 3 /* i */
        start local 3 // int i
        10: goto 18
        11: .line 397
      StackMap locals: java.lang.StringBuilder int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 3 /* i */
            aaload
            invokevirtual com.fasterxml.aalto.out.WNameTable$Bucket.length:()I
            istore 4 /* spillLen */
        start local 4 // int spillLen
        12: .line 398
            iconst_1
            istore 5 /* j */
        start local 5 // int j
        13: goto 16
        14: .line 399
      StackMap locals: int int
      StackMap stack:
            iload 2 /* pathCount */
            iload 5 /* j */
            iadd
            istore 2 /* pathCount */
        15: .line 398
            iinc 5 /* j */ 1
      StackMap locals:
      StackMap stack:
        16: iload 5 /* j */
            iload 4 /* spillLen */
            if_icmple 14
        end local 5 // int j
        end local 4 // int spillLen
        17: .line 396
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 3 /* i */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            if_icmplt 11
        end local 3 // int i
        19: .line 404
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            ifne 22
        20: .line 405
            dconst_0
            dstore 3 /* avgLength */
        start local 3 // double avgLength
        21: .line 406
            goto 23
        end local 3 // double avgLength
        22: .line 407
      StackMap locals:
      StackMap stack:
            iload 2 /* pathCount */
            i2d
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            i2d
            ddiv
            dstore 3 /* avgLength */
        start local 3 // double avgLength
        23: .line 412
      StackMap locals: double
      StackMap stack:
            aload 1 /* sb */
            dload 3 /* avgLength */
            invokevirtual java.lang.StringBuilder.append:(D)Ljava/lang/StringBuilder;
            pop
        24: .line 413
            aload 1 /* sb */
            bipush 93
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        25: .line 414
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // double avgLength
        end local 2 // int pathCount
        end local 1 // java.lang.StringBuilder sb
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lcom/fasterxml/aalto/out/WNameTable;
            1   26     1         sb  Ljava/lang/StringBuilder;
            9   26     2  pathCount  I
           10   19     3          i  I
           12   17     4   spillLen  I
           13   17     5          j  I
           21   22     3  avgLength  D
           23   26     3  avgLength  D

  public java.lang.String toDebugString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 420
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* sb */
        start local 1 // java.lang.StringBuilder sb
         1: .line 421
            aload 1 /* sb */
            ldc "[WNameTable, size: "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         2: .line 422
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         3: .line 423
            aload 1 /* sb */
            bipush 47
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 424
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
         5: .line 425
            aload 1 /* sb */
            ldc " -> "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 426
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         7: goto 21
         8: .line 427
      StackMap locals: java.lang.StringBuilder int
      StackMap stack:
            aload 1 /* sb */
            ldc "\n#"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         9: .line 428
            aload 1 /* sb */
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        10: .line 429
            aload 1 /* sb */
            ldc ": 0x"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        11: .line 430
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 2 /* i */
            iaload
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 431
            aload 1 /* sb */
            ldc " == "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 432
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 2 /* i */
            aaload
            astore 3 /* name */
        start local 3 // com.fasterxml.aalto.out.WName name
        14: .line 433
            aload 3 /* name */
            ifnonnull 17
        15: .line 434
            aload 1 /* sb */
            ldc "null"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        16: .line 435
            goto 20
        17: .line 436
      StackMap locals: com.fasterxml.aalto.out.WName
      StackMap stack:
            aload 1 /* sb */
            bipush 34
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        18: .line 437
            aload 1 /* sb */
            aload 3 /* name */
            invokevirtual com.fasterxml.aalto.out.WName.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 438
            aload 1 /* sb */
            bipush 34
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        end local 3 // com.fasterxml.aalto.out.WName name
        20: .line 426
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 2 /* i */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            arraylength
            if_icmplt 8
        end local 2 // int i
        22: .line 441
            aload 1 /* sb */
            ldc "\nSpill("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        23: .line 442
            aload 1 /* sb */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        24: .line 443
            aload 1 /* sb */
            ldc "):"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        25: .line 444
            iconst_0
            istore 2 /* i */
        start local 2 // int i
        26: goto 33
        27: .line 445
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 2 /* i */
            aaload
            astore 3 /* bucket */
        start local 3 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        28: .line 446
            aload 1 /* sb */
            ldc "\nsp#"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        29: .line 447
            aload 1 /* sb */
            iload 2 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        30: .line 448
            aload 1 /* sb */
            ldc ": "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        31: .line 449
            aload 1 /* sb */
            aload 3 /* bucket */
            invokevirtual com.fasterxml.aalto.out.WNameTable$Bucket.toDebugString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        end local 3 // com.fasterxml.aalto.out.WNameTable$Bucket bucket
        32: .line 444
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        33: iload 2 /* i */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            if_icmplt 27
        end local 2 // int i
        34: .line 451
            aload 1 /* sb */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder sb
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   35     0    this  Lcom/fasterxml/aalto/out/WNameTable;
            1   35     1      sb  Ljava/lang/StringBuilder;
            7   22     2       i  I
           14   20     3    name  Lcom/fasterxml/aalto/out/WName;
           26   34     2       i  I
           28   32     3  bucket  Lcom/fasterxml/aalto/out/WNameTable$Bucket;

  private void addSymbol(com.fasterxml.aalto.out.WName);
    descriptor: (Lcom/fasterxml/aalto/out/WName;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=6, args_size=2
        start local 0 // com.fasterxml.aalto.out.WNameTable this
        start local 1 // com.fasterxml.aalto.out.WName symbol
         0: .line 462
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
            ifeq 2
         1: .line 463
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.unshareMain:()V
         2: .line 466
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
            ifeq 4
         3: .line 467
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.rehash:()V
         4: .line 469
      StackMap locals:
      StackMap stack:
            aload 1 /* symbol */
            invokevirtual com.fasterxml.aalto.out.WName.hashCode:()I
            istore 2 /* hash */
        start local 2 // int hash
         5: .line 471
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.out.WNameTable.mCount:I
         6: .line 475
            iload 2 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            iand
            istore 3 /* ix */
        start local 3 // int ix
         7: .line 476
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 3 /* ix */
            aaload
            ifnonnull 13
         8: .line 477
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 3 /* ix */
            iload 2 /* hash */
            bipush 8
            ishl
            iastore
         9: .line 478
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
            ifeq 11
        10: .line 479
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.unshareNames:()V
        11: .line 481
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 3 /* ix */
            aload 1 /* symbol */
            aastore
        12: .line 482
            goto 30
        13: .line 486
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
            ifeq 15
        14: .line 487
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.unshareCollision:()V
        15: .line 489
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
        16: .line 490
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 3 /* ix */
            iaload
            istore 4 /* entryValue */
        start local 4 // int entryValue
        17: .line 491
            iload 4 /* entryValue */
            sipush 255
            iand
            istore 5 /* bucket */
        start local 5 // int bucket
        18: .line 492
            iload 5 /* bucket */
            ifne 28
        19: .line 493
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            sipush 254
            if_icmpgt 25
        20: .line 494
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            istore 5 /* bucket */
        21: .line 495
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
        22: .line 497
            iload 5 /* bucket */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            arraylength
            if_icmplt 26
        23: .line 498
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.expandCollision:()V
        24: .line 500
            goto 26
        25: .line 501
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.findBestBucket:()I
            istore 5 /* bucket */
        26: .line 504
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 3 /* ix */
            iload 4 /* entryValue */
            sipush -256
            iand
            iload 5 /* bucket */
            iconst_1
            iadd
            ior
            iastore
        27: .line 505
            goto 29
        28: .line 506
      StackMap locals:
      StackMap stack:
            iinc 5 /* bucket */ -1
        29: .line 510
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 5 /* bucket */
            new com.fasterxml.aalto.out.WNameTable$Bucket
            dup
            aload 1 /* symbol */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 5 /* bucket */
            aaload
            invokespecial com.fasterxml.aalto.out.WNameTable$Bucket.<init>:(Lcom/fasterxml/aalto/out/WName;Lcom/fasterxml/aalto/out/WNameTable$Bucket;)V
            aastore
        end local 5 // int bucket
        end local 4 // int entryValue
        30: .line 517
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            arraylength
            istore 4 /* hashSize */
        start local 4 // int hashSize
        31: .line 518
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            iload 4 /* hashSize */
            iconst_1
            ishr
            if_icmple 38
        32: .line 519
            iload 4 /* hashSize */
            iconst_2
            ishr
            istore 5 /* hashQuarter */
        start local 5 // int hashQuarter
        33: .line 523
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            iload 4 /* hashSize */
            iload 5 /* hashQuarter */
            isub
            if_icmple 36
        34: .line 524
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
        35: .line 525
            goto 38
      StackMap locals: int int
      StackMap stack:
        36: aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            iload 5 /* hashQuarter */
            if_icmplt 38
        37: .line 526
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
        end local 5 // int hashQuarter
        end local 4 // int hashSize
        38: .line 530
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int ix
        end local 2 // int hash
        end local 1 // com.fasterxml.aalto.out.WName symbol
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   39     0         this  Lcom/fasterxml/aalto/out/WNameTable;
            0   39     1       symbol  Lcom/fasterxml/aalto/out/WName;
            5   39     2         hash  I
            7   39     3           ix  I
           17   30     4   entryValue  I
           18   30     5       bucket  I
           31   38     4     hashSize  I
           33   38     5  hashQuarter  I
    MethodParameters:
        Name  Flags
      symbol  

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=14, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 534
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mNeedRehash:Z
         1: .line 536
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
         2: .line 542
            iconst_0
            istore 1 /* symbolsSeen */
        start local 1 // int symbolsSeen
         3: .line 543
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            astore 2 /* oldMainHash */
        start local 2 // int[] oldMainHash
         4: .line 544
            aload 2 /* oldMainHash */
            arraylength
            istore 3 /* len */
        start local 3 // int len
         5: .line 545
            aload 0 /* this */
            iload 3 /* len */
            iload 3 /* len */
            iadd
            newarray 10
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
         6: .line 546
            aload 0 /* this */
            iload 3 /* len */
            iload 3 /* len */
            iadd
            iconst_1
            isub
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
         7: .line 547
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            astore 4 /* oldNames */
        start local 4 // com.fasterxml.aalto.out.WName[] oldNames
         8: .line 548
            aload 0 /* this */
            iload 3 /* len */
            iload 3 /* len */
            iadd
            anewarray com.fasterxml.aalto.out.WName
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
         9: .line 549
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 19
        11: .line 550
      StackMap locals: com.fasterxml.aalto.out.WNameTable int int[] int com.fasterxml.aalto.out.WName[] int
      StackMap stack:
            aload 4 /* oldNames */
            iload 5 /* i */
            aaload
            astore 6 /* symbol */
        start local 6 // com.fasterxml.aalto.out.WName symbol
        12: .line 551
            aload 6 /* symbol */
            ifnull 18
        13: .line 552
            iinc 1 /* symbolsSeen */ 1
        14: .line 553
            aload 6 /* symbol */
            invokevirtual com.fasterxml.aalto.out.WName.hashCode:()I
            istore 7 /* hash */
        start local 7 // int hash
        15: .line 554
            iload 7 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            iand
            istore 8 /* ix */
        start local 8 // int ix
        16: .line 555
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 8 /* ix */
            aload 6 /* symbol */
            aastore
        17: .line 556
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 8 /* ix */
            iload 7 /* hash */
            bipush 8
            ishl
            iastore
        end local 8 // int ix
        end local 7 // int hash
        end local 6 // com.fasterxml.aalto.out.WName symbol
        18: .line 549
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 5 /* i */
            iload 3 /* len */
            if_icmplt 11
        end local 5 // int i
        20: .line 564
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            istore 5 /* oldEnd */
        start local 5 // int oldEnd
        21: .line 565
            iload 5 /* oldEnd */
            ifne 23
        22: .line 566
            return
        23: .line 569
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
        24: .line 570
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
        25: .line 571
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
        26: .line 573
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            astore 6 /* oldBuckets */
        start local 6 // com.fasterxml.aalto.out.WNameTable$Bucket[] oldBuckets
        27: .line 574
            aload 0 /* this */
            aload 6 /* oldBuckets */
            arraylength
            anewarray com.fasterxml.aalto.out.WNameTable$Bucket
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
        28: .line 575
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        29: goto 58
        30: .line 576
      StackMap locals: com.fasterxml.aalto.out.WNameTable$Bucket[] int
      StackMap stack:
            aload 6 /* oldBuckets */
            iload 7 /* i */
            aaload
            astore 8 /* curr */
        start local 8 // com.fasterxml.aalto.out.WNameTable$Bucket curr
        31: goto 56
        32: .line 577
      StackMap locals: com.fasterxml.aalto.out.WNameTable$Bucket
      StackMap stack:
            iinc 1 /* symbolsSeen */ 1
        33: .line 578
            aload 8 /* curr */
            getfield com.fasterxml.aalto.out.WNameTable$Bucket.mName:Lcom/fasterxml/aalto/out/WName;
            astore 9 /* symbol */
        start local 9 // com.fasterxml.aalto.out.WName symbol
        34: .line 579
            aload 9 /* symbol */
            invokevirtual com.fasterxml.aalto.out.WName.hashCode:()I
            istore 10 /* hash */
        start local 10 // int hash
        35: .line 580
            iload 10 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHashMask:I
            iand
            istore 11 /* ix */
        start local 11 // int ix
        36: .line 581
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 11 /* ix */
            iaload
            istore 12 /* val */
        start local 12 // int val
        37: .line 582
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 11 /* ix */
            aaload
            ifnonnull 41
        38: .line 583
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 11 /* ix */
            iload 10 /* hash */
            bipush 8
            ishl
            iastore
        39: .line 584
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iload 11 /* ix */
            aload 9 /* symbol */
            aastore
        40: .line 585
            goto 55
        41: .line 586
      StackMap locals: com.fasterxml.aalto.out.WNameTable int int[] int com.fasterxml.aalto.out.WName[] int com.fasterxml.aalto.out.WNameTable$Bucket[] int com.fasterxml.aalto.out.WNameTable$Bucket com.fasterxml.aalto.out.WName int int int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.out.WNameTable.mCollCount:I
        42: .line 587
            iload 12 /* val */
            sipush 255
            iand
            istore 13 /* bucket */
        start local 13 // int bucket
        43: .line 588
            iload 13 /* bucket */
            ifne 53
        44: .line 589
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            sipush 254
            if_icmpgt 50
        45: .line 590
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            istore 13 /* bucket */
        46: .line 591
            aload 0 /* this */
            dup
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            iconst_1
            iadd
            putfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
        47: .line 593
            iload 13 /* bucket */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            arraylength
            if_icmplt 51
        48: .line 594
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.expandCollision:()V
        49: .line 596
            goto 51
        50: .line 597
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.aalto.out.WNameTable.findBestBucket:()I
            istore 13 /* bucket */
        51: .line 600
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iload 11 /* ix */
            iload 12 /* val */
            sipush -256
            iand
            iload 13 /* bucket */
            iconst_1
            iadd
            ior
            iastore
        52: .line 601
            goto 54
        53: .line 602
      StackMap locals:
      StackMap stack:
            iinc 13 /* bucket */ -1
        54: .line 605
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 13 /* bucket */
            new com.fasterxml.aalto.out.WNameTable$Bucket
            dup
            aload 9 /* symbol */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iload 13 /* bucket */
            aaload
            invokespecial com.fasterxml.aalto.out.WNameTable$Bucket.<init>:(Lcom/fasterxml/aalto/out/WName;Lcom/fasterxml/aalto/out/WNameTable$Bucket;)V
            aastore
        end local 13 // int bucket
        end local 12 // int val
        end local 11 // int ix
        end local 10 // int hash
        end local 9 // com.fasterxml.aalto.out.WName symbol
        55: .line 576
      StackMap locals: com.fasterxml.aalto.out.WNameTable int int[] int com.fasterxml.aalto.out.WName[] int com.fasterxml.aalto.out.WNameTable$Bucket[] int com.fasterxml.aalto.out.WNameTable$Bucket
      StackMap stack:
            aload 8 /* curr */
            getfield com.fasterxml.aalto.out.WNameTable$Bucket.mNext:Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            astore 8 /* curr */
      StackMap locals:
      StackMap stack:
        56: aload 8 /* curr */
            ifnonnull 32
        end local 8 // com.fasterxml.aalto.out.WNameTable$Bucket curr
        57: .line 575
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        58: iload 7 /* i */
            iload 5 /* oldEnd */
            if_icmplt 30
        end local 7 // int i
        59: .line 610
            iload 1 /* symbolsSeen */
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            if_icmpeq 61
        60: .line 611
            new java.lang.Error
            dup
            new java.lang.StringBuilder
            dup
            ldc "Internal error: count after rehash "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* symbolsSeen */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "; should be "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCount:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.Error.<init>:(Ljava/lang/String;)V
            athrow
        61: .line 613
      StackMap locals:
      StackMap stack:
            return
        end local 6 // com.fasterxml.aalto.out.WNameTable$Bucket[] oldBuckets
        end local 5 // int oldEnd
        end local 4 // com.fasterxml.aalto.out.WName[] oldNames
        end local 3 // int len
        end local 2 // int[] oldMainHash
        end local 1 // int symbolsSeen
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   62     0         this  Lcom/fasterxml/aalto/out/WNameTable;
            3   62     1  symbolsSeen  I
            4   62     2  oldMainHash  [I
            5   62     3          len  I
            8   62     4     oldNames  [Lcom/fasterxml/aalto/out/WName;
           10   20     5            i  I
           12   18     6       symbol  Lcom/fasterxml/aalto/out/WName;
           15   18     7         hash  I
           16   18     8           ix  I
           21   62     5       oldEnd  I
           27   62     6   oldBuckets  [Lcom/fasterxml/aalto/out/WNameTable$Bucket;
           29   59     7            i  I
           31   57     8         curr  Lcom/fasterxml/aalto/out/WNameTable$Bucket;
           34   55     9       symbol  Lcom/fasterxml/aalto/out/WName;
           35   55    10         hash  I
           36   55    11           ix  I
           37   55    12          val  I
           43   55    13       bucket  I

  private int findBestBucket();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=7, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 622
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            astore 1 /* buckets */
        start local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] buckets
         1: .line 623
            ldc 2147483647
            istore 2 /* bestCount */
        start local 2 // int bestCount
         2: .line 624
            iconst_m1
            istore 3 /* bestIx */
        start local 3 // int bestIx
         3: .line 626
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollEnd:I
            istore 5 /* len */
        start local 5 // int len
         5: goto 13
         6: .line 627
      StackMap locals: com.fasterxml.aalto.out.WNameTable com.fasterxml.aalto.out.WNameTable$Bucket[] int int int int
      StackMap stack:
            aload 1 /* buckets */
            iload 4 /* i */
            aaload
            invokevirtual com.fasterxml.aalto.out.WNameTable$Bucket.length:()I
            istore 6 /* count */
        start local 6 // int count
         7: .line 628
            iload 6 /* count */
            iload 2 /* bestCount */
            if_icmpge 12
         8: .line 629
            iload 6 /* count */
            iconst_1
            if_icmpne 10
         9: .line 630
            iload 4 /* i */
            ireturn
        10: .line 632
      StackMap locals: int
      StackMap stack:
            iload 6 /* count */
            istore 2 /* bestCount */
        11: .line 633
            iload 4 /* i */
            istore 3 /* bestIx */
        end local 6 // int count
        12: .line 626
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            iload 5 /* len */
            if_icmplt 6
        end local 5 // int len
        end local 4 // int i
        14: .line 636
            iload 3 /* bestIx */
            ireturn
        end local 3 // int bestIx
        end local 2 // int bestCount
        end local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] buckets
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   15     0       this  Lcom/fasterxml/aalto/out/WNameTable;
            1   15     1    buckets  [Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            2   15     2  bestCount  I
            3   15     3     bestIx  I
            4   14     4          i  I
            5   14     5        len  I
            7   12     6      count  I

  private void unshareMain();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 647
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            astore 1 /* old */
        start local 1 // int[] old
         1: .line 648
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 650
            aload 0 /* this */
            iload 2 /* len */
            newarray 10
            putfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
         3: .line 651
            aload 1 /* old */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainHash:[I
            iconst_0
            iload 2 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 652
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mMainHashShared:Z
         5: .line 653
            return
        end local 2 // int len
        end local 1 // int[] old
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/aalto/out/WNameTable;
            1    6     1   old  [I
            2    6     2   len  I

  private void unshareCollision();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 657
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            astore 1 /* old */
        start local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] old
         1: .line 658
            aload 1 /* old */
            ifnonnull 4
         2: .line 659
            aload 0 /* this */
            bipush 32
            anewarray com.fasterxml.aalto.out.WNameTable$Bucket
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         3: .line 660
            goto 7
         4: .line 661
      StackMap locals: com.fasterxml.aalto.out.WNameTable$Bucket[]
      StackMap stack:
            aload 1 /* old */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         5: .line 662
            aload 0 /* this */
            iload 2 /* len */
            anewarray com.fasterxml.aalto.out.WNameTable$Bucket
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         6: .line 663
            aload 1 /* old */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iconst_0
            iload 2 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // int len
         7: .line 665
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mCollListShared:Z
         8: .line 666
            return
        end local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] old
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/aalto/out/WNameTable;
            1    9     1   old  [Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            5    7     2   len  I

  private void unshareNames();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 670
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            astore 1 /* old */
        start local 1 // com.fasterxml.aalto.out.WName[] old
         1: .line 671
            aload 1 /* old */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 672
            aload 0 /* this */
            iload 2 /* len */
            anewarray com.fasterxml.aalto.out.WName
            putfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
         3: .line 673
            aload 1 /* old */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mMainNames:[Lcom/fasterxml/aalto/out/WName;
            iconst_0
            iload 2 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 674
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.aalto.out.WNameTable.mMainNamesShared:Z
         5: .line 675
            return
        end local 2 // int len
        end local 1 // com.fasterxml.aalto.out.WName[] old
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/aalto/out/WNameTable;
            1    6     1   old  [Lcom/fasterxml/aalto/out/WName;
            2    6     2   len  I

  private void expandCollision();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.fasterxml.aalto.out.WNameTable this
         0: .line 679
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            astore 1 /* old */
        start local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] old
         1: .line 680
            aload 1 /* old */
            arraylength
            istore 2 /* len */
        start local 2 // int len
         2: .line 681
            aload 0 /* this */
            iload 2 /* len */
            iload 2 /* len */
            iadd
            anewarray com.fasterxml.aalto.out.WNameTable$Bucket
            putfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
         3: .line 682
            aload 1 /* old */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.aalto.out.WNameTable.mCollList:[Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            iconst_0
            iload 2 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 683
            return
        end local 2 // int len
        end local 1 // com.fasterxml.aalto.out.WNameTable$Bucket[] old
        end local 0 // com.fasterxml.aalto.out.WNameTable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/aalto/out/WNameTable;
            1    5     1   old  [Lcom/fasterxml/aalto/out/WNameTable$Bucket;
            2    5     2   len  I
}
SourceFile: "WNameTable.java"
NestMembers:
  com.fasterxml.aalto.out.WNameTable$Bucket
InnerClasses:
  final Bucket = com.fasterxml.aalto.out.WNameTable$Bucket of com.fasterxml.aalto.out.WNameTable