public class com.oracle.truffle.js.test.instrumentation.ResumableNodesTest extends com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.js.test.instrumentation.ResumableNodesTest
  super_class: com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
         0: .line 51
            aload 0 /* this */
            invokespecial com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest.<init>:()V
            return
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;

  public void asyncAwait();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
         0: .line 55
            ldc "function res() {  var local2 = 20;  return new Promise(resolve => {    resolve(local2);  });};async function asyncCall() {  var local = 2;  return await res() + await res() + local;};asyncCall();"
            astore 1 /* src */
        start local 1 // java.lang.String src
         1: .line 67
            aload 0 /* this */
            aload 1 /* src */
            iconst_2
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteVariableTag;
            aastore
            dup
            iconst_1
         2: .line 68
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$ReadVariableTag;
            aastore
         3: .line 67
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.evalWithTags:(Ljava/lang/String;[Ljava/lang/Class;)Lorg/graalvm/polyglot/Source;
            pop
         4: .line 70
            aload 0 /* this */
            ldc "local"
            iconst_2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 72
            aload 0 /* this */
            ldc "local2"
            bipush 20
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 73
            aload 0 /* this */
            ldc "resolve"
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;)V
         7: .line 74
            aload 0 /* this */
            ldc "resolve"
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;)V
         8: .line 75
            aload 0 /* this */
            ldc "local2"
            bipush 20
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
         9: .line 78
            aload 0 /* this */
            ldc "local2"
            bipush 20
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;Ljava/lang/Object;)V
        10: .line 79
            aload 0 /* this */
            ldc "resolve"
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;)V
        11: .line 80
            aload 0 /* this */
            ldc "resolve"
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;)V
        12: .line 81
            aload 0 /* this */
            ldc "local2"
            bipush 20
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
        13: .line 83
            aload 0 /* this */
            ldc "local"
            iconst_2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
        14: .line 84
            return
        end local 1 // java.lang.String src
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            1   15     1   src  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void generatorYield();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
         0: .line 88
            ldc "function* foo(index) {  var local = 1;  while (index < 3) {    yield (local + index++);  };};var val = 0;var iterator = foo(val);iterator.next().value;iterator.next().value;"
            astore 1 /* src */
        start local 1 // java.lang.String src
         1: .line 99
            aload 0 /* this */
            aload 1 /* src */
            iconst_2
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteVariableTag;
            aastore
            dup
            iconst_1
         2: .line 100
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$ReadVariableTag;
            aastore
         3: .line 99
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.evalWithTags:(Ljava/lang/String;[Ljava/lang/Class;)Lorg/graalvm/polyglot/Source;
            pop
         4: .line 102
            aload 0 /* this */
            ldc "local"
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableWrite:(Ljava/lang/String;Ljava/lang/Object;)V
         5: .line 104
            aload 0 /* this */
            ldc "index"
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
         6: .line 105
            aload 0 /* this */
            ldc "local"
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
         7: .line 106
            aload 0 /* this */
            ldc "index"
            iconst_0
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableInc:(Ljava/lang/String;I)V
         8: .line 108
            aload 0 /* this */
            ldc "index"
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
         9: .line 109
            aload 0 /* this */
            ldc "local"
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableRead:(Ljava/lang/String;Ljava/lang/Object;)V
        10: .line 110
            aload 0 /* this */
            ldc "index"
            iconst_1
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertVariableInc:(Ljava/lang/String;I)V
        11: .line 111
            return
        end local 1 // java.lang.String src
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            1   12     1   src  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void generatorYieldInCall();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
         0: .line 115
            ldc "function dummy(arg) {  return {};};function crash() {  return 'Crash';};function* myGen() {  const c = crash();  const boom = dummy(    yield c  );};a = myGen();a.next();a.next();a.next();"
            astore 1 /* src */
        start local 1 // java.lang.String src
         1: .line 132
            aload 0 /* this */
            aload 1 /* src */
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            aastore
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.evalWithTags:(Ljava/lang/String;[Ljava/lang/Class;)Lorg/graalvm/polyglot/Source;
            pop
         2: .line 134
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$0(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         3: .line 137
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         4: .line 139
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            aload 0 /* this */
            invokedynamic accept(Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$1(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (7)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         5: .line 146
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         6: .line 148
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            aload 0 /* this */
            invokedynamic accept(Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$3(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (7)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         7: .line 156
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         8: .line 158
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$5(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         9: .line 161
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
        10: .line 162
            return
        end local 1 // java.lang.String src
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            1   11     1   src  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void generatorYieldWritesElement();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
         0: .line 166
            ldc "var ret = [];function *next() {  ret[0] = yield 1;  yield next;};for(const val of next()) {  val;}"
            astore 1 /* src */
        start local 1 // java.lang.String src
         1: .line 175
            aload 0 /* this */
            aload 1 /* src */
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteElementTag;
            aastore
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.evalWithTags:(Ljava/lang/String;[Ljava/lang/Class;)Lorg/graalvm/polyglot/Source;
            pop
         2: .line 177
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteElementTag;
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$6(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         3: .line 181
            getstatic com.oracle.truffle.js.runtime.objects.Undefined.instance:Lcom/oracle/truffle/js/runtime/objects/JSDynamicObject;
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertReturnValue:(Ljava/lang/Object;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:(Ljava/util/function/Consumer;)V
         4: .line 182
            return
        end local 1 // java.lang.String src
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            1    5     1   src  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  protected void assertVariableInc(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // java.lang.String name
        start local 2 // int value
         0: .line 185
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteVariableTag;
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* value */
            invokedynamic accept(Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;Ljava/lang/String;I)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$7(Ljava/lang/String;ILcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (7)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         1: .line 191
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         2: .line 192
            return
        end local 2 // int value
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    3     1   name  Ljava/lang/String;
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      name   
      value  

  protected void assertVariableRead(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 195
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$ReadVariableTag;
            aload 1 /* name */
            invokedynamic accept(Ljava/lang/String;)Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$9(Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         1: .line 197
            aload 2 /* value */
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertReturnValue:(Ljava/lang/Object;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:(Ljava/util/function/Consumer;)V
         2: .line 198
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    3     1   name  Ljava/lang/String;
            0    3     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      name   
      value  

  protected void assertVariableRead(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // java.lang.String name
         0: .line 201
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$ReadVariableTag;
            aload 1 /* name */
            invokedynamic accept(Ljava/lang/String;)Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$10(Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         1: .line 203
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         2: .line 204
            return
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  protected void assertVariableWrite(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object value
         0: .line 207
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteVariableTag;
            aload 1 /* name */
            aload 2 /* value */
            invokedynamic accept(Ljava/lang/String;Ljava/lang/Object;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$11(Ljava/lang/String;Ljava/lang/Object;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         1: .line 210
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         2: .line 211
            return
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    3     1   name  Ljava/lang/String;
            0    3     2  value  Ljava/lang/Object;
    MethodParameters:
       Name  Flags
      name   
      value  

  protected void assertVariableWrite(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // java.lang.String name
         0: .line 214
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$WriteVariableTag;
            aload 1 /* name */
            invokedynamic accept(Ljava/lang/String;)Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$12(Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         1: .line 217
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         2: .line 218
            return
        end local 1 // java.lang.String name
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    3     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  private static void lambda$0(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
         0: .line 135
            aload 1 /* call */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertUndefinedInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 136
            aload 1 /* call */
            ldc "myGen"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 137
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
        end local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    3     1  call  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private void lambda$1(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
         0: .line 140
            aload 2 /* call */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSObjectInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 141
            aload 2 /* call */
            ldc "next"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 142
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$2(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         3: .line 145
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         4: .line 146
            return
        end local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    5     1     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    5     2  call  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private void lambda$3(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
         0: .line 149
            aload 2 /* call */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSObjectInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 150
            aload 2 /* call */
            ldc "next"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 151
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$FunctionCallTag;
            invokedynamic accept()Ljava/util/function/BiConsumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$4(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/BiConsumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         3: .line 155
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:()V
         4: .line 156
            return
        end local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    5     1     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    5     2  call  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$5(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
         0: .line 159
            aload 1 /* call */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSObjectInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 160
            aload 1 /* call */
            ldc "next"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 161
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call
        end local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    3     1  call  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$6(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent w
         0: .line 178
            aload 1 /* w */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSArrayInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 179
            aload 1 /* w */
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/lang/Object;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 180
            aload 1 /* w */
            getstatic com.oracle.truffle.js.runtime.objects.Undefined.instance:Lcom/oracle/truffle/js/runtime/objects/JSDynamicObject;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/lang/Object;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         3: .line 181
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent w
        end local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    4     1     w  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private void lambda$7(java.lang.String, int, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Ljava/lang/String;ILcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x1002) ACC_PRIVATE, ACC_SYNTHETIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
        start local 3 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 4 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
         0: .line 186
            aload 3 /* e */
            ldc "name"
            aload 1
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 187
            aload 0 /* this */
            ldc Lcom/oracle/truffle/js/nodes/instrumentation/JSTags$ReadVariableTag;
            aload 3 /* e */
            aload 1
            invokedynamic accept(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;)Ljava/util/function/Consumer;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.metafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodType;Ljava/lang/invoke/MethodHandle;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Ljava/lang/Object;)V
                  com/oracle/truffle/js/test/instrumentation/ResumableNodesTest.lambda$8(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V (6)
                  (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
            invokevirtual com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.enter:(Ljava/lang/Class;Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
         2: .line 189
            iload 2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertReturnValue:(Ljava/lang/Object;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.exit:(Ljava/util/function/Consumer;)V
         3: .line 190
            aload 4 /* var */
            iload 2
            iconst_1
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/lang/Object;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         4: .line 191
            return
        end local 4 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
        end local 3 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        end local 0 // com.oracle.truffle.js.test.instrumentation.ResumableNodesTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/js/test/instrumentation/ResumableNodesTest;
            0    5     3     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    5     4   var  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$9(java.lang.String, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
         0: .line 196
            aload 1 /* e */
            ldc "name"
            aload 0
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 197
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;

  private static void lambda$10(java.lang.String, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=2
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
         0: .line 202
            aload 1 /* e */
            ldc "name"
            aload 0
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 203
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     1     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;

  private static void lambda$11(java.lang.String, java.lang.Object, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=4, args_size=4
        start local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 3 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
         0: .line 208
            aload 2 /* e */
            ldc "name"
            aload 0
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 209
            aload 3 /* var */
            aload 1
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/lang/Object;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 210
            return
        end local 3 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
        end local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     2     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    3     3   var  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$12(java.lang.String, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
        start local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
         0: .line 215
            aload 1 /* e */
            ldc "name"
            aload 0
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 216
            aload 2 /* var */
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:()Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 217
            return
        end local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent var
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     1     e  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    3     2   var  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$2(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e2
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call2
         0: .line 143
            aload 1 /* call2 */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSObjectInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 144
            aload 1 /* call2 */
            ldc "crash"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 145
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call2
        end local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e2
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0     e2  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    3     1  call2  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$4(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e2
        start local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call2
         0: .line 152
            aload 1 /* call2 */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSObjectInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         1: .line 153
            aload 1 /* call2 */
            ldc "dummy"
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertJSFunctionInputWithName:(Ljava/lang/String;)Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         2: .line 154
            aload 1 /* call2 */
            getstatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertUndefinedInput:Ljava/util/function/Consumer;
            invokevirtual com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent.input:(Ljava/util/function/Consumer;)Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;
            pop
         3: .line 155
            return
        end local 1 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent call2
        end local 0 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e2
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0     e2  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
            0    4     1  call2  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$AssertedEvent;

  private static void lambda$8(com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event, java.lang.String, com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event);
    descriptor: (Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
        start local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e1
         0: .line 188
            aload 0
            ldc "name"
            aload 1
            invokestatic com.oracle.truffle.js.test.instrumentation.ResumableNodesTest.assertAttribute:(Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 189
            return
        end local 2 // com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event e1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     2    e1  Lcom/oracle/truffle/js/test/instrumentation/FineGrainedAccessTest$Event;
}
SourceFile: "ResumableNodesTest.java"
InnerClasses:
  public final FunctionCallTag = com.oracle.truffle.js.nodes.instrumentation.JSTags$FunctionCallTag of com.oracle.truffle.js.nodes.instrumentation.JSTags
  public final ReadVariableTag = com.oracle.truffle.js.nodes.instrumentation.JSTags$ReadVariableTag of com.oracle.truffle.js.nodes.instrumentation.JSTags
  public final WriteElementTag = com.oracle.truffle.js.nodes.instrumentation.JSTags$WriteElementTag of com.oracle.truffle.js.nodes.instrumentation.JSTags
  public final WriteVariableTag = com.oracle.truffle.js.nodes.instrumentation.JSTags$WriteVariableTag of com.oracle.truffle.js.nodes.instrumentation.JSTags
  AssertedEvent = com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$AssertedEvent of com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest
  protected Event = com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest$Event of com.oracle.truffle.js.test.instrumentation.FineGrainedAccessTest
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles