public class net.bytebuddy.implementation.Implementation$Context$Disabled extends net.bytebuddy.implementation.Implementation$Context$ExtractableView$AbstractBase
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: net.bytebuddy.implementation.Implementation$Context$Disabled
  super_class: net.bytebuddy.implementation.Implementation$Context$ExtractableView$AbstractBase
{
  protected void <init>(net.bytebuddy.description.type.TypeDescription, net.bytebuddy.ClassFileVersion);
    descriptor: (Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/ClassFileVersion;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.description.type.TypeDescription instrumentedType
        start local 2 // net.bytebuddy.ClassFileVersion classFileVersion
         0: .line 630
            aload 0 /* this */
            aload 1 /* instrumentedType */
            aload 2 /* classFileVersion */
            invokespecial net.bytebuddy.implementation.Implementation$Context$ExtractableView$AbstractBase.<init>:(Lnet/bytebuddy/description/type/TypeDescription;Lnet/bytebuddy/ClassFileVersion;)V
         1: .line 631
            return
        end local 2 // net.bytebuddy.ClassFileVersion classFileVersion
        end local 1 // net.bytebuddy.description.type.TypeDescription instrumentedType
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    2     1  instrumentedType  Lnet/bytebuddy/description/type/TypeDescription;
            0    2     2  classFileVersion  Lnet/bytebuddy/ClassFileVersion;
    MethodParameters:
                  Name  Flags
      instrumentedType  
      classFileVersion  

  public boolean isEnabled();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
         0: .line 637
            iconst_0
            ireturn
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;

  public java.util.List<net.bytebuddy.dynamic.DynamicType> getAuxiliaryTypes();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
         0: .line 644
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
            areturn
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
    Signature: ()Ljava/util/List<Lnet/bytebuddy/dynamic/DynamicType;>;

  public void drain(net.bytebuddy.dynamic.scaffold.TypeInitializer$Drain, org.objectweb.asm.ClassVisitor, net.bytebuddy.implementation.attribute.AnnotationValueFilter$Factory);
    descriptor: (Lnet/bytebuddy/dynamic/scaffold/TypeInitializer$Drain;Lorg/objectweb/asm/ClassVisitor;Lnet/bytebuddy/implementation/attribute/AnnotationValueFilter$Factory;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.dynamic.scaffold.TypeInitializer$Drain drain
        start local 2 // org.objectweb.asm.ClassVisitor classVisitor
        start local 3 // net.bytebuddy.implementation.attribute.AnnotationValueFilter$Factory annotationValueFilterFactory
         0: .line 651
            aload 1 /* drain */
            aload 2 /* classVisitor */
            getstatic net.bytebuddy.dynamic.scaffold.TypeInitializer$None.INSTANCE:Lnet/bytebuddy/dynamic/scaffold/TypeInitializer$None;
            aload 0 /* this */
            invokeinterface net.bytebuddy.dynamic.scaffold.TypeInitializer$Drain.apply:(Lorg/objectweb/asm/ClassVisitor;Lnet/bytebuddy/dynamic/scaffold/TypeInitializer;Lnet/bytebuddy/implementation/Implementation$Context;)V
         1: .line 652
            return
        end local 3 // net.bytebuddy.implementation.attribute.AnnotationValueFilter$Factory annotationValueFilterFactory
        end local 2 // org.objectweb.asm.ClassVisitor classVisitor
        end local 1 // net.bytebuddy.dynamic.scaffold.TypeInitializer$Drain drain
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot                          Name  Signature
            0    2     0                          this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    2     1                         drain  Lnet/bytebuddy/dynamic/scaffold/TypeInitializer$Drain;
            0    2     2                  classVisitor  Lorg/objectweb/asm/ClassVisitor;
            0    2     3  annotationValueFilterFactory  Lnet/bytebuddy/implementation/attribute/AnnotationValueFilter$Factory;
    MethodParameters:
                              Name  Flags
      drain                         
      classVisitor                  
      annotationValueFilterFactory  

  public net.bytebuddy.description.type.TypeDescription register(net.bytebuddy.implementation.auxiliary.AuxiliaryType);
    descriptor: (Lnet/bytebuddy/implementation/auxiliary/AuxiliaryType;)Lnet/bytebuddy/description/type/TypeDescription;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.implementation.auxiliary.AuxiliaryType auxiliaryType
         0: .line 658
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Registration of auxiliary types was disabled: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* auxiliaryType */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // net.bytebuddy.implementation.auxiliary.AuxiliaryType auxiliaryType
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    1     0           this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    1     1  auxiliaryType  Lnet/bytebuddy/implementation/auxiliary/AuxiliaryType;
    MethodParameters:
               Name  Flags
      auxiliaryType  

  public net.bytebuddy.description.method.MethodDescription$InDefinedShape registerAccessorFor(net.bytebuddy.implementation.Implementation$SpecialMethodInvocation, net.bytebuddy.implementation.MethodAccessorFactory$AccessType);
    descriptor: (Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;)Lnet/bytebuddy/description/method/MethodDescription$InDefinedShape;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        start local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
         0: .line 665
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Registration of method accessors was disabled: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* specialMethodInvocation */
            invokeinterface net.bytebuddy.implementation.Implementation$SpecialMethodInvocation.getMethodDescription:()Lnet/bytebuddy/description/method/MethodDescription;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
        end local 1 // net.bytebuddy.implementation.Implementation$SpecialMethodInvocation specialMethodInvocation
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    1     0                     this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    1     1  specialMethodInvocation  Lnet/bytebuddy/implementation/Implementation$SpecialMethodInvocation;
            0    1     2               accessType  Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;
    MethodParameters:
                         Name  Flags
      specialMethodInvocation  
      accessType               

  public net.bytebuddy.description.method.MethodDescription$InDefinedShape registerGetterFor(net.bytebuddy.description.field.FieldDescription, net.bytebuddy.implementation.MethodAccessorFactory$AccessType);
    descriptor: (Lnet/bytebuddy/description/field/FieldDescription;Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;)Lnet/bytebuddy/description/method/MethodDescription$InDefinedShape;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
        start local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
         0: .line 672
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Registration of field accessor was disabled: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* fieldDescription */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
        end local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    1     1  fieldDescription  Lnet/bytebuddy/description/field/FieldDescription;
            0    1     2        accessType  Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;
    MethodParameters:
                  Name  Flags
      fieldDescription  
      accessType        

  public net.bytebuddy.description.method.MethodDescription$InDefinedShape registerSetterFor(net.bytebuddy.description.field.FieldDescription, net.bytebuddy.implementation.MethodAccessorFactory$AccessType);
    descriptor: (Lnet/bytebuddy/description/field/FieldDescription;Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;)Lnet/bytebuddy/description/method/MethodDescription$InDefinedShape;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
        start local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
         0: .line 679
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Registration of field accessor was disabled: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* fieldDescription */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 2 // net.bytebuddy.implementation.MethodAccessorFactory$AccessType accessType
        end local 1 // net.bytebuddy.description.field.FieldDescription fieldDescription
        end local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    1     1  fieldDescription  Lnet/bytebuddy/description/field/FieldDescription;
            0    1     2        accessType  Lnet/bytebuddy/implementation/MethodAccessorFactory$AccessType;
    MethodParameters:
                  Name  Flags
      fieldDescription  
      accessType        

  public net.bytebuddy.description.field.FieldDescription$InDefinedShape cache(net.bytebuddy.implementation.bytecode.StackManipulation, net.bytebuddy.description.type.TypeDescription);
    descriptor: (Lnet/bytebuddy/implementation/bytecode/StackManipulation;Lnet/bytebuddy/description/type/TypeDescription;)Lnet/bytebuddy/description/field/FieldDescription$InDefinedShape;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // net.bytebuddy.implementation.Implementation$Context$Disabled this
        start local 1 // net.bytebuddy.implementation.bytecode.StackManipulation fieldValue
        start local 2 // net.bytebuddy.description.type.TypeDescription fieldType
         0: .line 686
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Field values caching was disabled: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* fieldType */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        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$Disabled this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0        this  Lnet/bytebuddy/implementation/Implementation$Context$Disabled;
            0    1     1  fieldValue  Lnet/bytebuddy/implementation/bytecode/StackManipulation;
            0    1     2   fieldType  Lnet/bytebuddy/description/type/TypeDescription;
    MethodParameters:
            Name  Flags
      fieldValue  
      fieldType   
}
SourceFile: "Implementation.java"
NestHost: net.bytebuddy.implementation.Implementation
InnerClasses:
  public abstract InDefinedShape = net.bytebuddy.description.field.FieldDescription$InDefinedShape of net.bytebuddy.description.field.FieldDescription
  public abstract InDefinedShape = net.bytebuddy.description.method.MethodDescription$InDefinedShape of net.bytebuddy.description.method.MethodDescription
  public abstract Drain = net.bytebuddy.dynamic.scaffold.TypeInitializer$Drain of net.bytebuddy.dynamic.scaffold.TypeInitializer
  public final None = net.bytebuddy.dynamic.scaffold.TypeInitializer$None of net.bytebuddy.dynamic.scaffold.TypeInitializer
  public abstract Context = net.bytebuddy.implementation.Implementation$Context of net.bytebuddy.implementation.Implementation
  public Disabled = net.bytebuddy.implementation.Implementation$Context$Disabled of net.bytebuddy.implementation.Implementation$Context
  public final Factory = net.bytebuddy.implementation.Implementation$Context$Disabled$Factory of net.bytebuddy.implementation.Implementation$Context$Disabled
  public abstract ExtractableView = net.bytebuddy.implementation.Implementation$Context$ExtractableView of net.bytebuddy.implementation.Implementation$Context
  public abstract AbstractBase = net.bytebuddy.implementation.Implementation$Context$ExtractableView$AbstractBase of net.bytebuddy.implementation.Implementation$Context$ExtractableView
  public abstract SpecialMethodInvocation = net.bytebuddy.implementation.Implementation$SpecialMethodInvocation of net.bytebuddy.implementation.Implementation
  public final AccessType = net.bytebuddy.implementation.MethodAccessorFactory$AccessType of net.bytebuddy.implementation.MethodAccessorFactory
  public abstract Factory = net.bytebuddy.implementation.attribute.AnnotationValueFilter$Factory of net.bytebuddy.implementation.attribute.AnnotationValueFilter