public class net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry implements net.bytebuddy.implementation.bytecode.StackManipulation
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry
  super_class: java.lang.Object
{
  private final net.bytebuddy.implementation.bytecode.StackManipulation fieldValue;
    descriptor: Lnet/bytebuddy/implementation/bytecode/StackManipulation;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final net.bytebuddy.description.type.TypeDescription fieldType;
    descriptor: Lnet/bytebuddy/description/type/TypeDescription;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(net.bytebuddy.implementation.bytecode.StackManipulation, net.bytebuddy.description.type.TypeDescription);
    descriptor: (Lnet/bytebuddy/implementation/bytecode/StackManipulation;Lnet/bytebuddy/description/type/TypeDescription;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
        start local 1 // net.bytebuddy.implementation.bytecode.StackManipulation fieldValue
        start local 2 // net.bytebuddy.description.type.TypeDescription fieldType
         0: .line 1021
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 1022
            aload 0 /* this */
            aload 1 /* fieldValue */
            putfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
         2: .line 1023
            aload 0 /* this */
            aload 2 /* fieldType */
            putfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldType:Lnet/bytebuddy/description/type/TypeDescription;
         3: .line 1024
            return
        end local 2 // net.bytebuddy.description.type.TypeDescription fieldType
        end local 1 // net.bytebuddy.implementation.bytecode.StackManipulation fieldValue
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
            0    4     1  fieldValue  Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            0    4     2   fieldType  Lnet/bytebuddy/description/type/TypeDescription;
    MethodParameters:
            Name  Flags
      fieldValue  
      fieldType   

  protected net.bytebuddy.implementation.bytecode.ByteCodeAppender storeIn(net.bytebuddy.description.field.FieldDescription);
    descriptor: (Lnet/bytebuddy/description/field/FieldDescription;)Lnet/bytebuddy/implementation/bytecode/ByteCodeAppender;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
        start local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
         0: .line 1033
            new net.bytebuddy.implementation.bytecode.ByteCodeAppender$Simple
            dup
            iconst_2
            anewarray net.bytebuddy.implementation.bytecode.StackManipulation
            dup
            iconst_0
            aload 0 /* this */
            aastore
            dup
            iconst_1
            aload 1 /* fieldDescription */
            invokestatic net.bytebuddy.implementation.bytecode.member.FieldAccess.forField:(Lnet/bytebuddy/description/field/FieldDescription;)Lnet/bytebuddy/implementation/bytecode/member/FieldAccess$Defined;
            invokeinterface net.bytebuddy.implementation.bytecode.member.FieldAccess$Defined.write:()Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            aastore
            invokespecial net.bytebuddy.implementation.bytecode.ByteCodeAppender$Simple.<init>:([Lnet/bytebuddy/implementation/bytecode/StackManipulation;)V
            areturn
        end local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
            0    1     1  fieldDescription  Lnet/bytebuddy/description/field/FieldDescription;
    MethodParameters:
                  Name  Flags
      fieldDescription  

  protected net.bytebuddy.description.type.TypeDescription getFieldType();
    descriptor: ()Lnet/bytebuddy/description/type/TypeDescription;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
         0: .line 1042
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldType:Lnet/bytebuddy/description/type/TypeDescription;
            areturn
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;

  public boolean isValid();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
         0: .line 1049
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            invokeinterface net.bytebuddy.implementation.bytecode.StackManipulation.isValid:()Z
            ireturn
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;

  public net.bytebuddy.implementation.bytecode.StackManipulation$Size apply(org.objectweb.asm.MethodVisitor, net.bytebuddy.implementation.Implementation$Context);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;Lnet/bytebuddy/implementation/Implementation$Context;)Lnet/bytebuddy/implementation/bytecode/StackManipulation$Size;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
        start local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        start local 2 // net.bytebuddy.implementation.Implementation$Context implementationContext
         0: .line 1056
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            aload 1 /* methodVisitor */
            aload 2 /* implementationContext */
            invokeinterface net.bytebuddy.implementation.bytecode.StackManipulation.apply:(Lorg/objectweb/asm/MethodVisitor;Lnet/bytebuddy/implementation/Implementation$Context;)Lnet/bytebuddy/implementation/bytecode/StackManipulation$Size;
            areturn
        end local 2 // net.bytebuddy.implementation.Implementation$Context implementationContext
        end local 1 // org.objectweb.asm.MethodVisitor methodVisitor
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    1     0                   this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
            0    1     1          methodVisitor  Lorg/objectweb/asm/MethodVisitor;
            0    1     2  implementationContext  Lnet/bytebuddy/implementation/Implementation$Context;
    MethodParameters:
                       Name  Flags
      methodVisitor          
      implementationContext  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
         0: .line 1061
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            invokevirtual java.lang.Object.hashCode:()I
            istore 1 /* result */
        start local 1 // int result
         1: .line 1062
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldType:Lnet/bytebuddy/description/type/TypeDescription;
            invokevirtual java.lang.Object.hashCode:()I
            iadd
            istore 1 /* result */
         2: .line 1063
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
            1    3     1  result  I

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
        start local 1 // java.lang.Object other
         0: .line 1068
            aload 0 /* this */
            aload 1 /* other */
            if_acmpne 2
         1: .line 1069
            iconst_1
            ireturn
         2: .line 1070
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            ifnull 3
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* other */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            if_acmpeq 4
         3: .line 1071
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         4: .line 1073
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry
            astore 2 /* fieldCacheEntry */
        start local 2 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry fieldCacheEntry
         5: .line 1074
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            aload 2 /* fieldCacheEntry */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldValue:Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
            aload 0 /* this */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldType:Lnet/bytebuddy/description/type/TypeDescription;
            aload 2 /* fieldCacheEntry */
            getfield net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry.fieldType:Lnet/bytebuddy/description/type/TypeDescription;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 6
            iconst_1
            ireturn
      StackMap locals: net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry
      StackMap stack:
         6: iconst_0
            ireturn
        end local 2 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry fieldCacheEntry
        end local 1 // java.lang.Object other
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    7     0             this  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
            0    7     1            other  Ljava/lang/Object;
            5    7     2  fieldCacheEntry  Lnet/bytebuddy/implementation/Implementation$Context$Default$FieldCacheEntry;
    MethodParameters:
       Name  Flags
      other  
}
SourceFile: "Implementation.java"
NestHost: net.bytebuddy.implementation.Implementation
InnerClasses:
  public abstract Context = net.bytebuddy.implementation.Implementation$Context of net.bytebuddy.implementation.Implementation
  public Default = net.bytebuddy.implementation.Implementation$Context$Default of net.bytebuddy.implementation.Implementation$Context
  protected FieldCacheEntry = net.bytebuddy.implementation.Implementation$Context$Default$FieldCacheEntry of net.bytebuddy.implementation.Implementation$Context$Default
  public Simple = net.bytebuddy.implementation.bytecode.ByteCodeAppender$Simple of net.bytebuddy.implementation.bytecode.ByteCodeAppender
  public Size = net.bytebuddy.implementation.bytecode.StackManipulation$Size of net.bytebuddy.implementation.bytecode.StackManipulation
  public abstract Defined = net.bytebuddy.implementation.bytecode.member.FieldAccess$Defined of net.bytebuddy.implementation.bytecode.member.FieldAccess