public interface com.oracle.truffle.api.instrumentation.InstrumentableNode extends com.oracle.truffle.api.nodes.NodeInterface
  minor version: 0
  major version: 59
  flags: flags: (0x0601) ACC_PUBLIC, ACC_INTERFACE, ACC_ABSTRACT
  this_class: com.oracle.truffle.api.instrumentation.InstrumentableNode
  super_class: java.lang.Object
{
  public static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 103
            ldc Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic com.oracle.truffle.api.instrumentation.InstrumentableNode.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public abstract boolean isInstrumentable();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract com.oracle.truffle.api.instrumentation.InstrumentableNode$WrapperNode createWrapper(com.oracle.truffle.api.instrumentation.ProbeNode);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/ProbeNode;)Lcom/oracle/truffle/api/instrumentation/InstrumentableNode$WrapperNode;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
       Name  Flags
      probe  

  public boolean hasTag(java.lang.Class<? extends com.oracle.truffle.api.instrumentation.Tag>);
    descriptor: (Ljava/lang/Class;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
        start local 1 // java.lang.Class tag
         0: .line 199
            iconst_0
            ireturn
        end local 1 // java.lang.Class tag
        end local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
            0    1     1   tag  Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;
    Signature: (Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;)Z
    MethodParameters:
      Name  Flags
      tag   

  public java.lang.Object getNodeObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
         0: .line 237
            aconst_null
            areturn
        end local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;

  public com.oracle.truffle.api.instrumentation.InstrumentableNode materializeInstrumentableNodes(java.util.Set<java.lang.Class<? extends com.oracle.truffle.api.instrumentation.Tag>>);
    descriptor: (Ljava/util/Set;)Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
        start local 1 // java.util.Set materializedTags
         0: .line 283
            aload 0 /* this */
            areturn
        end local 1 // java.util.Set materializedTags
        end local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
            0    1     1  materializedTags  Ljava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;
    Signature: (Ljava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;)Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
    MethodParameters:
                  Name  Flags
      materializedTags  

  public com.oracle.truffle.api.nodes.Node findNearestNodeAt(int, java.util.Set<java.lang.Class<? extends com.oracle.truffle.api.instrumentation.Tag>>);
    descriptor: (ILjava/util/Set;)Lcom/oracle/truffle/api/nodes/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
        start local 1 // int sourceCharIndex
        start local 2 // java.util.Set tags
         0: .line 362
            iload 1 /* sourceCharIndex */
            aload 0 /* this */
            checkcast com.oracle.truffle.api.nodes.Node
            aload 2 /* tags */
            invokestatic com.oracle.truffle.api.instrumentation.DefaultNearestNodeSearch.findNearestNodeAt:(ILcom/oracle/truffle/api/nodes/Node;Ljava/util/Set;)Lcom/oracle/truffle/api/nodes/Node;
            areturn
        end local 2 // java.util.Set tags
        end local 1 // int sourceCharIndex
        end local 0 // com.oracle.truffle.api.instrumentation.InstrumentableNode this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/oracle/truffle/api/instrumentation/InstrumentableNode;
            0    1     1  sourceCharIndex  I
            0    1     2             tags  Ljava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;
    Signature: (ILjava/util/Set<Ljava/lang/Class<+Lcom/oracle/truffle/api/instrumentation/Tag;>;>;)Lcom/oracle/truffle/api/nodes/Node;
    MethodParameters:
                 Name  Flags
      sourceCharIndex  
      tags             

  public static com.oracle.truffle.api.nodes.Node findInstrumentableParent(com.oracle.truffle.api.nodes.Node);
    descriptor: (Lcom/oracle/truffle/api/nodes/Node;)Lcom/oracle/truffle/api/nodes/Node;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.oracle.truffle.api.nodes.Node node
         0: .line 376
            aload 0 /* node */
            astore 1 /* inode */
        start local 1 // com.oracle.truffle.api.nodes.Node inode
         1: .line 377
            goto 3
         2: .line 378
      StackMap locals: com.oracle.truffle.api.nodes.Node
      StackMap stack:
            aload 1 /* inode */
            invokevirtual com.oracle.truffle.api.nodes.Node.getParent:()Lcom/oracle/truffle/api/nodes/Node;
            astore 1 /* inode */
         3: .line 377
      StackMap locals:
      StackMap stack:
            aload 1 /* inode */
            ifnull 4
            aload 1 /* inode */
            instanceof com.oracle.truffle.api.instrumentation.InstrumentableNode$WrapperNode
            ifne 2
            aload 1 /* inode */
            instanceof com.oracle.truffle.api.instrumentation.InstrumentableNode
            ifeq 2
            aload 1 /* inode */
            checkcast com.oracle.truffle.api.instrumentation.InstrumentableNode
            invokeinterface com.oracle.truffle.api.instrumentation.InstrumentableNode.isInstrumentable:()Z
            ifeq 2
         4: .line 380
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.api.instrumentation.InstrumentableNode.$assertionsDisabled:Z
            ifne 6
            aload 1 /* inode */
            ifnull 6
            aload 1 /* inode */
            instanceof com.oracle.truffle.api.instrumentation.InstrumentableNode
            ifeq 5
            aload 1 /* inode */
            checkcast com.oracle.truffle.api.instrumentation.InstrumentableNode
            invokeinterface com.oracle.truffle.api.instrumentation.InstrumentableNode.isInstrumentable:()Z
            ifne 6
      StackMap locals:
      StackMap stack:
         5: new java.lang.AssertionError
            dup
            aload 1 /* inode */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         6: .line 381
      StackMap locals:
      StackMap stack:
            getstatic com.oracle.truffle.api.instrumentation.InstrumentableNode.$assertionsDisabled:Z
            ifne 7
            aload 1 /* inode */
            instanceof com.oracle.truffle.api.instrumentation.InstrumentableNode$WrapperNode
            ifeq 7
            new java.lang.AssertionError
            dup
            aload 1 /* inode */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
         7: .line 382
      StackMap locals:
      StackMap stack:
            aload 1 /* inode */
            areturn
        end local 1 // com.oracle.truffle.api.nodes.Node inode
        end local 0 // com.oracle.truffle.api.nodes.Node node
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   node  Lcom/oracle/truffle/api/nodes/Node;
            1    8     1  inode  Lcom/oracle/truffle/api/nodes/Node;
    MethodParameters:
      Name  Flags
      node  
}
SourceFile: "InstrumentableNode.java"
NestMembers:
  com.oracle.truffle.api.instrumentation.InstrumentableNode$WrapperNode
InnerClasses:
  public abstract WrapperNode = com.oracle.truffle.api.instrumentation.InstrumentableNode$WrapperNode of com.oracle.truffle.api.instrumentation.InstrumentableNode