class com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 implements com.oracle.truffle.api.instrumentation.ExecutionEventListener
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2
  super_class: java.lang.Object
{
  final com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest this$0;
    descriptor: Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  private final java.util.concurrent.atomic.AtomicInteger val$entered;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  private final java.util.concurrent.atomic.AtomicInteger val$returnedExceptional;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest, java.util.concurrent.atomic.AtomicInteger, java.util.concurrent.atomic.AtomicInteger);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest;Ljava/util/concurrent/atomic/AtomicInteger;Ljava/util/concurrent/atomic/AtomicInteger;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
         0: .line 110
            aload 0 /* this */
            aload 1
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2.this$0:Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest;
            aload 0 /* this */
            aload 2
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2.val$entered:Ljava/util/concurrent/atomic/AtomicInteger;
            aload 0 /* this */
            aload 3
            putfield com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2.val$returnedExceptional:Ljava/util/concurrent/atomic/AtomicInteger;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest$2;
    MethodParameters:
                         Name  Flags
      this$0                   final
      val$entered              final
      val$returnedExceptional  final

  public void onEnter(com.oracle.truffle.api.instrumentation.EventContext, com.oracle.truffle.api.frame.VirtualFrame);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/EventContext;Lcom/oracle/truffle/api/frame/VirtualFrame;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
        start local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        start local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
         0: .line 114
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2.val$entered:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            pop
         1: .line 115
            return
        end local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
        end local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest$2;
            0    2     1    ctx  Lcom/oracle/truffle/api/instrumentation/EventContext;
            0    2     2  frame  Lcom/oracle/truffle/api/frame/VirtualFrame;
    MethodParameters:
       Name  Flags
      ctx    
      frame  

  public void onReturnValue(com.oracle.truffle.api.instrumentation.EventContext, com.oracle.truffle.api.frame.VirtualFrame, java.lang.Object);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/EventContext;Lcom/oracle/truffle/api/frame/VirtualFrame;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
        start local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        start local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
        start local 3 // java.lang.Object result
         0: .line 119
            new com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$MyInstrumentException
            dup
            invokespecial com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$MyInstrumentException.<init>:()V
            athrow
        end local 3 // java.lang.Object result
        end local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
        end local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest$2;
            0    1     1     ctx  Lcom/oracle/truffle/api/instrumentation/EventContext;
            0    1     2   frame  Lcom/oracle/truffle/api/frame/VirtualFrame;
            0    1     3  result  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      ctx     
      frame   
      result  

  public void onReturnExceptional(com.oracle.truffle.api.instrumentation.EventContext, com.oracle.truffle.api.frame.VirtualFrame, java.lang.Throwable);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/EventContext;Lcom/oracle/truffle/api/frame/VirtualFrame;Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=4, args_size=4
        start local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
        start local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        start local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
        start local 3 // java.lang.Throwable exception
         0: .line 124
            aload 0 /* this */
            getfield com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2.val$returnedExceptional:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            pop
         1: .line 125
            return
        end local 3 // java.lang.Throwable exception
        end local 2 // com.oracle.truffle.api.frame.VirtualFrame frame
        end local 1 // com.oracle.truffle.api.instrumentation.EventContext ctx
        end local 0 // com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lcom/oracle/truffle/api/instrumentation/test/InstrumentationNoExceptionsTest$2;
            0    2     1        ctx  Lcom/oracle/truffle/api/instrumentation/EventContext;
            0    2     2      frame  Lcom/oracle/truffle/api/frame/VirtualFrame;
            0    2     3  exception  Ljava/lang/Throwable;
    MethodParameters:
           Name  Flags
      ctx        
      frame      
      exception  
}
SourceFile: "InstrumentationNoExceptionsTest.java"
EnclosingMethod: com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest.testInstrumentExceptionOnReturn:()V
NestHost: com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest
InnerClasses:
  com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$2
  private MyInstrumentException = com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest$MyInstrumentException of com.oracle.truffle.api.instrumentation.test.InstrumentationNoExceptionsTest