public class com.oracle.truffle.js.test.interop.EvalInteropTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.js.test.interop.EvalInteropTest
  super_class: java.lang.Object
{
  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.interop.EvalInteropTest this
         0: .line 54
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/test/interop/EvalInteropTest;

  public void testDirectEvalOfBoxedString();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
         0: .line 58
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: iconst_0
            anewarray java.lang.String
            invokestatic com.oracle.truffle.js.test.JSTest.newContextBuilder:([Ljava/lang/String;)Lorg/graalvm/polyglot/Context$Builder;
            invokevirtual org.graalvm.polyglot.Context$Builder.build:()Lorg/graalvm/polyglot/Context;
            astore 3 /* context */
        start local 3 // org.graalvm.polyglot.Context context
         2: .line 59
            aload 3 /* context */
            ldc "js"
            ldc "(function(code) { return eval(code); })"
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
            astore 4 /* eval */
        start local 4 // org.graalvm.polyglot.Value eval
         3: .line 60
            aload 4 /* eval */
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "6*7"
            invokestatic com.oracle.truffle.js.test.polyglot.ForeignBoxedObject.createNew:(Ljava/lang/Object;)Lcom/oracle/truffle/api/object/DynamicObject;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            astore 5 /* result */
        start local 5 // org.graalvm.polyglot.Value result
         4: .line 61
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         5: .line 62
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.fitsInInt:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         6: .line 63
            ldc 42
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
        end local 5 // org.graalvm.polyglot.Value result
        end local 4 // org.graalvm.polyglot.Value eval
         7: .line 64
            aload 3 /* context */
            ifnull 13
            aload 3 /* context */
            invokevirtual org.graalvm.polyglot.Context.close:()V
            goto 13
      StackMap locals: com.oracle.truffle.js.test.interop.EvalInteropTest java.lang.Throwable java.lang.Throwable org.graalvm.polyglot.Context
      StackMap stack: java.lang.Throwable
         8: astore 1
            aload 3 /* context */
            ifnull 9
            aload 3 /* context */
            invokevirtual org.graalvm.polyglot.Context.close:()V
        end local 3 // org.graalvm.polyglot.Context context
      StackMap locals:
      StackMap stack:
         9: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
            aload 1
            ifnonnull 11
            aload 2
            astore 1
            goto 12
      StackMap locals:
      StackMap stack:
        11: aload 1
            aload 2
            if_acmpeq 12
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        12: aload 1
            athrow
        13: .line 65
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lcom/oracle/truffle/js/test/interop/EvalInteropTest;
            2    9     3  context  Lorg/graalvm/polyglot/Context;
            3    7     4     eval  Lorg/graalvm/polyglot/Value;
            4    7     5   result  Lorg/graalvm/polyglot/Value;
      Exception table:
        from    to  target  type
           2     7       8  any
           1    10      10  any
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testIndirectEvalOfBoxedString();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=1
        start local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
         0: .line 69
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: iconst_0
            anewarray java.lang.String
            invokestatic com.oracle.truffle.js.test.JSTest.newContextBuilder:([Ljava/lang/String;)Lorg/graalvm/polyglot/Context$Builder;
            invokevirtual org.graalvm.polyglot.Context$Builder.build:()Lorg/graalvm/polyglot/Context;
            astore 3 /* context */
        start local 3 // org.graalvm.polyglot.Context context
         2: .line 70
            aload 3 /* context */
            ldc "js"
            ldc "(function(code) { return (0,eval)(code); })"
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
            astore 4 /* eval */
        start local 4 // org.graalvm.polyglot.Value eval
         3: .line 71
            aload 4 /* eval */
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "6*7"
            invokestatic com.oracle.truffle.js.test.polyglot.ForeignBoxedObject.createNew:(Ljava/lang/Object;)Lcom/oracle/truffle/api/object/DynamicObject;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            astore 5 /* result */
        start local 5 // org.graalvm.polyglot.Value result
         4: .line 72
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         5: .line 73
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.fitsInInt:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         6: .line 74
            ldc 42
            aload 5 /* result */
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
        end local 5 // org.graalvm.polyglot.Value result
        end local 4 // org.graalvm.polyglot.Value eval
         7: .line 75
            aload 3 /* context */
            ifnull 13
            aload 3 /* context */
            invokevirtual org.graalvm.polyglot.Context.close:()V
            goto 13
      StackMap locals: com.oracle.truffle.js.test.interop.EvalInteropTest java.lang.Throwable java.lang.Throwable org.graalvm.polyglot.Context
      StackMap stack: java.lang.Throwable
         8: astore 1
            aload 3 /* context */
            ifnull 9
            aload 3 /* context */
            invokevirtual org.graalvm.polyglot.Context.close:()V
        end local 3 // org.graalvm.polyglot.Context context
      StackMap locals:
      StackMap stack:
         9: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 2
            aload 1
            ifnonnull 11
            aload 2
            astore 1
            goto 12
      StackMap locals:
      StackMap stack:
        11: aload 1
            aload 2
            if_acmpeq 12
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        12: aload 1
            athrow
        13: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lcom/oracle/truffle/js/test/interop/EvalInteropTest;
            2    9     3  context  Lorg/graalvm/polyglot/Context;
            3    7     4     eval  Lorg/graalvm/polyglot/Value;
            4    7     5   result  Lorg/graalvm/polyglot/Value;
      Exception table:
        from    to  target  type
           2     7       8  any
           1    10      10  any
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNestedContext();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
         0: .line 80
            iconst_0
            anewarray java.lang.String
            invokestatic com.oracle.truffle.js.test.JSTest.newContextBuilder:([Ljava/lang/String;)Lorg/graalvm/polyglot/Context$Builder;
            iconst_1
            invokevirtual org.graalvm.polyglot.Context$Builder.allowAllAccess:(Z)Lorg/graalvm/polyglot/Context$Builder;
            invokevirtual org.graalvm.polyglot.Context$Builder.build:()Lorg/graalvm/polyglot/Context;
            astore 1 /* cx */
        start local 1 // org.graalvm.polyglot.Context cx
         1: .line 81
            aload 1 /* cx */
            ldc "js"
            ldc "Java.type('com.oracle.truffle.js.test.interop.EvalInteropTest').nestedContextEval();"
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
            astore 2 /* v */
        start local 2 // org.graalvm.polyglot.Value v
         2: .line 82
            aload 2 /* v */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         3: .line 83
            ldc 42
            aload 2 /* v */
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         4: .line 84
            return
        end local 2 // org.graalvm.polyglot.Value v
        end local 1 // org.graalvm.polyglot.Context cx
        end local 0 // com.oracle.truffle.js.test.interop.EvalInteropTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/js/test/interop/EvalInteropTest;
            1    5     1    cx  Lorg/graalvm/polyglot/Context;
            2    5     2     v  Lorg/graalvm/polyglot/Value;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public static java.lang.Object nestedContextEval();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 87
            iconst_0
            anewarray java.lang.String
            invokestatic com.oracle.truffle.js.test.JSTest.newContextBuilder:([Ljava/lang/String;)Lorg/graalvm/polyglot/Context$Builder;
            invokevirtual org.graalvm.polyglot.Context$Builder.build:()Lorg/graalvm/polyglot/Context;
            astore 0 /* context */
        start local 0 // org.graalvm.polyglot.Context context
         1: .line 88
            aload 0 /* context */
            ldc "js"
            ldc "Number(42);"
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
            areturn
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            1    2     0  context  Lorg/graalvm/polyglot/Context;
}
SourceFile: "EvalInteropTest.java"
InnerClasses:
  public final Builder = org.graalvm.polyglot.Context$Builder of org.graalvm.polyglot.Context