public abstract class jdk.internal.org.objectweb.asm.tree.analysis.Interpreter<V extends jdk.internal.org.objectweb.asm.tree.analysis.Value>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: jdk.internal.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 // jdk.internal.org.objectweb.asm.tree.analysis.Interpreter this
        start local 1 // int api
         0: .line 83
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 84
            aload 0 /* this */
            iload 1 /* api */
            putfield jdk.internal.org.objectweb.asm.tree.analysis.Interpreter.api:I
         2: .line 85
            return
        end local 1 // int api
        end local 0 // jdk.internal.org.objectweb.asm.tree.analysis.Interpreter this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/objectweb/asm/tree/analysis/Interpreter<TV;>;
            0    3     1   api  I
    MethodParameters:
      Name  Flags
      api   final

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

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

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

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

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

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

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

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

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