public final class jdk.internal.org.objectweb.asm.TypePath
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: jdk.internal.org.objectweb.asm.TypePath
  super_class: java.lang.Object
{
  public static final int ARRAY_ELEMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int INNER_TYPE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int WILDCARD_BOUND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  public static final int TYPE_ARGUMENT;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 3

  private final byte[] typePathContainer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int typePathOffset;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(byte[], int);
    descriptor: ([BI)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // jdk.internal.org.objectweb.asm.TypePath this
        start local 1 // byte[] typePathContainer
        start local 2 // int typePathOffset
         0: .line 102
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 103
            aload 0 /* this */
            aload 1 /* typePathContainer */
            putfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
         2: .line 104
            aload 0 /* this */
            iload 2 /* typePathOffset */
            putfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
         3: .line 105
            return
        end local 2 // int typePathOffset
        end local 1 // byte[] typePathContainer
        end local 0 // jdk.internal.org.objectweb.asm.TypePath this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    4     0               this  Ljdk/internal/org/objectweb/asm/TypePath;
            0    4     1  typePathContainer  [B
            0    4     2     typePathOffset  I
    MethodParameters:
                   Name  Flags
      typePathContainer  final
      typePathOffset     final

  public int getLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.objectweb.asm.TypePath this
         0: .line 114
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
            baload
            ireturn
        end local 0 // jdk.internal.org.objectweb.asm.TypePath this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/objectweb/asm/TypePath;

  public int getStep(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.TypePath this
        start local 1 // int index
         0: .line 126
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
            iconst_2
            iload 1 /* index */
            imul
            iadd
            iconst_1
            iadd
            baload
            ireturn
        end local 1 // int index
        end local 0 // jdk.internal.org.objectweb.asm.TypePath this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/internal/org/objectweb/asm/TypePath;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public int getStepArgument(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.TypePath this
        start local 1 // int index
         0: .line 138
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
            aload 0 /* this */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
            iconst_2
            iload 1 /* index */
            imul
            iadd
            iconst_2
            iadd
            baload
            ireturn
        end local 1 // int index
        end local 0 // jdk.internal.org.objectweb.asm.TypePath this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/internal/org/objectweb/asm/TypePath;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  final

  public static jdk.internal.org.objectweb.asm.TypePath fromString(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljdk/internal/org/objectweb/asm/TypePath;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // java.lang.String typePath
         0: .line 150
            aload 0 /* typePath */
            ifnull 1
            aload 0 /* typePath */
            invokevirtual java.lang.String.length:()I
            ifne 2
         1: .line 151
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
         2: .line 153
      StackMap locals:
      StackMap stack:
            aload 0 /* typePath */
            invokevirtual java.lang.String.length:()I
            istore 1 /* typePathLength */
        start local 1 // int typePathLength
         3: .line 154
            new jdk.internal.org.objectweb.asm.ByteVector
            dup
            iload 1 /* typePathLength */
            invokespecial jdk.internal.org.objectweb.asm.ByteVector.<init>:(I)V
            astore 2 /* output */
        start local 2 // jdk.internal.org.objectweb.asm.ByteVector output
         4: .line 155
            aload 2 /* output */
            iconst_0
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.putByte:(I)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
         5: .line 156
            iconst_0
            istore 3 /* typePathIndex */
        start local 3 // int typePathIndex
         6: .line 157
            goto 31
         7: .line 158
      StackMap locals: int jdk.internal.org.objectweb.asm.ByteVector int
      StackMap stack:
            aload 0 /* typePath */
            iload 3 /* typePathIndex */
            iinc 3 /* typePathIndex */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* c */
        start local 4 // char c
         8: .line 159
            iload 4 /* c */
            bipush 91
            if_icmpne 11
         9: .line 160
            aload 2 /* output */
            iconst_0
            iconst_0
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.put11:(II)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
        10: .line 161
            goto 31
      StackMap locals: int
      StackMap stack:
        11: iload 4 /* c */
            bipush 46
            if_icmpne 14
        12: .line 162
            aload 2 /* output */
            iconst_1
            iconst_0
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.put11:(II)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
        13: .line 163
            goto 31
      StackMap locals:
      StackMap stack:
        14: iload 4 /* c */
            bipush 42
            if_icmpne 17
        15: .line 164
            aload 2 /* output */
            iconst_2
            iconst_0
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.put11:(II)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
        16: .line 165
            goto 31
      StackMap locals:
      StackMap stack:
        17: iload 4 /* c */
            bipush 48
            if_icmplt 30
            iload 4 /* c */
            bipush 57
            if_icmpgt 30
        18: .line 166
            iload 4 /* c */
            bipush 48
            isub
            istore 5 /* typeArg */
        start local 5 // int typeArg
        19: .line 167
            goto 27
        20: .line 168
      StackMap locals: int
      StackMap stack:
            aload 0 /* typePath */
            iload 3 /* typePathIndex */
            iinc 3 /* typePathIndex */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* c */
        21: .line 169
            iload 4 /* c */
            bipush 48
            if_icmplt 24
            iload 4 /* c */
            bipush 57
            if_icmpgt 24
        22: .line 170
            iload 5 /* typeArg */
            bipush 10
            imul
            iload 4 /* c */
            iadd
            bipush 48
            isub
            istore 5 /* typeArg */
        23: .line 171
            goto 27
      StackMap locals:
      StackMap stack:
        24: iload 4 /* c */
            bipush 59
            if_icmpne 26
        25: .line 172
            goto 28
        26: .line 174
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        27: .line 167
      StackMap locals:
      StackMap stack:
            iload 3 /* typePathIndex */
            iload 1 /* typePathLength */
            if_icmplt 20
        28: .line 177
      StackMap locals:
      StackMap stack:
            aload 2 /* output */
            iconst_3
            iload 5 /* typeArg */
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.put11:(II)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
        end local 5 // int typeArg
        29: .line 178
            goto 31
        30: .line 179
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
        end local 4 // char c
        31: .line 157
      StackMap locals:
      StackMap stack:
            iload 3 /* typePathIndex */
            iload 1 /* typePathLength */
            if_icmplt 7
        32: .line 182
            aload 2 /* output */
            getfield jdk.internal.org.objectweb.asm.ByteVector.data:[B
            iconst_0
            aload 2 /* output */
            getfield jdk.internal.org.objectweb.asm.ByteVector.length:I
            iconst_2
            idiv
            i2b
            bastore
        33: .line 183
            new jdk.internal.org.objectweb.asm.TypePath
            dup
            aload 2 /* output */
            getfield jdk.internal.org.objectweb.asm.ByteVector.data:[B
            iconst_0
            invokespecial jdk.internal.org.objectweb.asm.TypePath.<init>:([BI)V
            areturn
        end local 3 // int typePathIndex
        end local 2 // jdk.internal.org.objectweb.asm.ByteVector output
        end local 1 // int typePathLength
        end local 0 // java.lang.String typePath
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   34     0        typePath  Ljava/lang/String;
            3   34     1  typePathLength  I
            4   34     2          output  Ljdk/internal/org/objectweb/asm/ByteVector;
            6   34     3   typePathIndex  I
            8   31     4               c  C
           19   29     5         typeArg  I
    MethodParameters:
          Name  Flags
      typePath  final

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // jdk.internal.org.objectweb.asm.TypePath this
         0: .line 193
            aload 0 /* this */
            invokevirtual jdk.internal.org.objectweb.asm.TypePath.getLength:()I
            istore 1 /* length */
        start local 1 // int length
         1: .line 194
            new java.lang.StringBuilder
            dup
            iload 1 /* length */
            iconst_2
            imul
            invokespecial java.lang.StringBuilder.<init>:(I)V
            astore 2 /* result */
        start local 2 // java.lang.StringBuilder result
         2: .line 195
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 15
         4: .line 196
      StackMap locals: int java.lang.StringBuilder int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual jdk.internal.org.objectweb.asm.TypePath.getStep:(I)I
            tableswitch { // 0 - 3
                    0: 5
                    1: 7
                    2: 9
                    3: 11
              default: 13
          }
         5: .line 198
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            bipush 91
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         6: .line 199
            goto 14
         7: .line 201
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            bipush 46
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         8: .line 202
            goto 14
         9: .line 204
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            bipush 42
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        10: .line 205
            goto 14
        11: .line 207
      StackMap locals:
      StackMap stack:
            aload 2 /* result */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual jdk.internal.org.objectweb.asm.TypePath.getStepArgument:(I)I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 59
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        12: .line 208
            goto 14
        13: .line 210
      StackMap locals:
      StackMap stack:
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        14: .line 195
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 3 /* i */
            iload 1 /* length */
            if_icmplt 4
        end local 3 // int i
        16: .line 213
            aload 2 /* result */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.lang.StringBuilder result
        end local 1 // int length
        end local 0 // jdk.internal.org.objectweb.asm.TypePath this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   17     0    this  Ljdk/internal/org/objectweb/asm/TypePath;
            1   17     1  length  I
            2   17     2  result  Ljava/lang/StringBuilder;
            3   16     3       i  I

  static void put(jdk.internal.org.objectweb.asm.TypePath, jdk.internal.org.objectweb.asm.ByteVector);
    descriptor: (Ljdk/internal/org/objectweb/asm/TypePath;Ljdk/internal/org/objectweb/asm/ByteVector;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // jdk.internal.org.objectweb.asm.TypePath typePath
        start local 1 // jdk.internal.org.objectweb.asm.ByteVector output
         0: .line 224
            aload 0 /* typePath */
            ifnonnull 3
         1: .line 225
            aload 1 /* output */
            iconst_0
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.putByte:(I)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
         2: .line 226
            goto 5
         3: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* typePath */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
            aload 0 /* typePath */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
            baload
            iconst_2
            imul
            iconst_1
            iadd
            istore 2 /* length */
        start local 2 // int length
         4: .line 228
            aload 1 /* output */
            aload 0 /* typePath */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathContainer:[B
            aload 0 /* typePath */
            getfield jdk.internal.org.objectweb.asm.TypePath.typePathOffset:I
            iload 2 /* length */
            invokevirtual jdk.internal.org.objectweb.asm.ByteVector.putByteArray:([BII)Ljdk/internal/org/objectweb/asm/ByteVector;
            pop
        end local 2 // int length
         5: .line 230
      StackMap locals:
      StackMap stack:
            return
        end local 1 // jdk.internal.org.objectweb.asm.ByteVector output
        end local 0 // jdk.internal.org.objectweb.asm.TypePath typePath
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0  typePath  Ljdk/internal/org/objectweb/asm/TypePath;
            0    6     1    output  Ljdk/internal/org/objectweb/asm/ByteVector;
            4    5     2    length  I
    MethodParameters:
          Name  Flags
      typePath  final
      output    final
}
SourceFile: "TypePath.java"