public abstract class org.objectweb.asm.tree.analysis.Interpreter<V extends org.objectweb.asm.tree.analysis.Value>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.objectweb.asm.tree.analysis.Interpreter
  super_class: java.lang.Object
{
  protected final int api;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected void <init>(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // int api
         0: .line 61
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            iload 1 /* api */
            putfield org.objectweb.asm.tree.analysis.Interpreter.api:I
         2: .line 63
            return
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    3     1   api  I
    MethodParameters:
      Name  Flags
      api   final

  public abstract V newValue(org.objectweb.asm.Type);
    descriptor: (Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (Lorg/objectweb/asm/Type;)TV;
    MethodParameters:
      Name  Flags
      type  

  public V newParameterValue(boolean, int, org.objectweb.asm.Type);
    descriptor: (ZILorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // boolean isInstanceMethod
        start local 2 // int local
        start local 3 // org.objectweb.asm.Type type
         0: .line 97
            aload 0 /* this */
            aload 3 /* type */
            invokevirtual org.objectweb.asm.tree.analysis.Interpreter.newValue:(Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
            areturn
        end local 3 // org.objectweb.asm.Type type
        end local 2 // int local
        end local 1 // boolean isInstanceMethod
        end local 0 // org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lorg/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    1     1  isInstanceMethod  Z
            0    1     2             local  I
            0    1     3              type  Lorg/objectweb/asm/Type;
    Signature: (ZILorg/objectweb/asm/Type;)TV;
    MethodParameters:
                  Name  Flags
      isInstanceMethod  final
      local             final
      type              final

  public V newReturnTypeValue(org.objectweb.asm.Type);
    descriptor: (Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // org.objectweb.asm.Type type
         0: .line 111
            aload 0 /* this */
            aload 1 /* type */
            invokevirtual org.objectweb.asm.tree.analysis.Interpreter.newValue:(Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
            areturn
        end local 1 // org.objectweb.asm.Type type
        end local 0 // org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    1     1  type  Lorg/objectweb/asm/Type;
    Signature: (Lorg/objectweb/asm/Type;)TV;
    MethodParameters:
      Name  Flags
      type  final

  public V newEmptyValue();
    descriptor: (I)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // int local
         0: .line 126
            aload 0 /* this */
            aconst_null
            invokevirtual org.objectweb.asm.tree.analysis.Interpreter.newValue:(Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
            areturn
        end local 1 // int local
        end local 0 // org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    1     1  local  I
    Signature: (I)TV;
    MethodParameters:
       Name  Flags
      local  final

  public V newExceptionValue(org.objectweb.asm.tree.TryCatchBlockNode, org.objectweb.asm.tree.analysis.Frame<V>, org.objectweb.asm.Type);
    descriptor: (Lorg/objectweb/asm/tree/TryCatchBlockNode;Lorg/objectweb/asm/tree/analysis/Frame;Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // org.objectweb.asm.tree.TryCatchBlockNode tryCatchBlockNode
        start local 2 // org.objectweb.asm.tree.analysis.Frame handlerFrame
        start local 3 // org.objectweb.asm.Type exceptionType
         0: .line 145
            aload 0 /* this */
            aload 3 /* exceptionType */
            invokevirtual org.objectweb.asm.tree.analysis.Interpreter.newValue:(Lorg/objectweb/asm/Type;)Lorg/objectweb/asm/tree/analysis/Value;
            areturn
        end local 3 // org.objectweb.asm.Type exceptionType
        end local 2 // org.objectweb.asm.tree.analysis.Frame handlerFrame
        end local 1 // org.objectweb.asm.tree.TryCatchBlockNode tryCatchBlockNode
        end local 0 // org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lorg/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    1     1  tryCatchBlockNode  Lorg/objectweb/asm/tree/TryCatchBlockNode;
            0    1     2       handlerFrame  Lorg/objectweb/asm/tree/analysis/Frame<TV;>;
            0    1     3      exceptionType  Lorg/objectweb/asm/Type;
    Signature: (Lorg/objectweb/asm/tree/TryCatchBlockNode;Lorg/objectweb/asm/tree/analysis/Frame<TV;>;Lorg/objectweb/asm/Type;)TV;
    MethodParameters:
                   Name  Flags
      tryCatchBlockNode  final
      handlerFrame       final
      exceptionType      final

  public abstract V newOperation(org.objectweb.asm.tree.AbstractInsnNode);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;)TV;
    MethodParameters:
      Name  Flags
      insn  

  public abstract V copyOperation(org.objectweb.asm.tree.AbstractInsnNode, );
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/analysis/Value;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;TV;)TV;
    MethodParameters:
       Name  Flags
      insn   
      value  

  public abstract V unaryOperation(org.objectweb.asm.tree.AbstractInsnNode, );
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/analysis/Value;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;TV;)TV;
    MethodParameters:
       Name  Flags
      insn   
      value  

  public abstract V binaryOperation(org.objectweb.asm.tree.AbstractInsnNode, V, );
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/analysis/Value;Lorg/objectweb/asm/tree/analysis/Value;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;TV;TV;)TV;
    MethodParameters:
        Name  Flags
      insn    
      value1  
      value2  

  public abstract V ternaryOperation(org.objectweb.asm.tree.AbstractInsnNode, V, V, );
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/analysis/Value;Lorg/objectweb/asm/tree/analysis/Value;Lorg/objectweb/asm/tree/analysis/Value;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;TV;TV;TV;)TV;
    MethodParameters:
        Name  Flags
      insn    
      value1  
      value2  
      value3  

  public abstract V naryOperation(org.objectweb.asm.tree.AbstractInsnNode, java.util.List<? extends V>);
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Ljava/util/List;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;Ljava/util/List<+TV;>;)TV;
    MethodParameters:
        Name  Flags
      insn    
      values  

  public abstract void returnOperation(org.objectweb.asm.tree.AbstractInsnNode, V, );
    descriptor: (Lorg/objectweb/asm/tree/AbstractInsnNode;Lorg/objectweb/asm/tree/analysis/Value;Lorg/objectweb/asm/tree/analysis/Value;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.objectweb.asm.tree.analysis.AnalyzerException
    Signature: (Lorg/objectweb/asm/tree/AbstractInsnNode;TV;TV;)V
    MethodParameters:
          Name  Flags
      insn      
      value     
      expected  

  public abstract V merge(V, );
    descriptor: (Lorg/objectweb/asm/tree/analysis/Value;Lorg/objectweb/asm/tree/analysis/Value;)Lorg/objectweb/asm/tree/analysis/Value;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Signature: (TV;TV;)TV;
    MethodParameters:
        Name  Flags
      value1  
      value2  
}
Signature: <V::Lorg/objectweb/asm/tree/analysis/Value;>Ljava/lang/Object;
SourceFile: "Interpreter.java"