public class com.oracle.truffle.sl.test.SLInteropOperatorTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.sl.test.SLInteropOperatorTest
  super_class: java.lang.Object
{
  private org.graalvm.polyglot.Context context;
    descriptor: Lorg/graalvm/polyglot/Context;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
         0: .line 51
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/test/SLInteropOperatorTest;

  public void setUp();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
         0: .line 56
            aload 0 /* this */
            iconst_1
            anewarray java.lang.String
            dup
            iconst_0
            ldc "sl"
            aastore
            invokestatic org.graalvm.polyglot.Context.create:([Ljava/lang/String;)Lorg/graalvm/polyglot/Context;
            putfield com.oracle.truffle.sl.test.SLInteropOperatorTest.context:Lorg/graalvm/polyglot/Context;
         1: .line 57
            return
        end local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/sl/test/SLInteropOperatorTest;
    RuntimeVisibleAnnotations: 
      org.junit.Before()

  public void tearDown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
         0: .line 61
            aload 0 /* this */
            aconst_null
            putfield com.oracle.truffle.sl.test.SLInteropOperatorTest.context:Lorg/graalvm/polyglot/Context;
         1: .line 62
            return
        end local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/sl/test/SLInteropOperatorTest;
    RuntimeVisibleAnnotations: 
      org.junit.After()

  public void testAdd();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
         0: .line 66
            ldc "sl"
            ldc "function testAdd(a,b) {return a + b;} function main() {return testAdd;}"
            ldc "testAdd.sl"
            invokestatic org.graalvm.polyglot.Source.newBuilder:(Ljava/lang/String;Ljava/lang/CharSequence;Ljava/lang/String;)Lorg/graalvm/polyglot/Source$Builder;
            invokevirtual org.graalvm.polyglot.Source$Builder.buildLiteral:()Lorg/graalvm/polyglot/Source;
            astore 1 /* src */
        start local 1 // org.graalvm.polyglot.Source src
         1: .line 67
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInteropOperatorTest.context:Lorg/graalvm/polyglot/Context;
            aload 1 /* src */
            invokevirtual org.graalvm.polyglot.Context.eval:(Lorg/graalvm/polyglot/Source;)Lorg/graalvm/polyglot/Value;
            astore 2 /* fnc */
        start local 2 // org.graalvm.polyglot.Value fnc
         2: .line 68
            aload 2 /* fnc */
            invokevirtual org.graalvm.polyglot.Value.canExecute:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         3: .line 69
            aload 2 /* fnc */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iconst_2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            astore 3 /* res */
        start local 3 // org.graalvm.polyglot.Value res
         4: .line 70
            aload 3 /* res */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         5: .line 71
            ldc 3
            aload 3 /* res */
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         6: .line 72
            return
        end local 3 // org.graalvm.polyglot.Value res
        end local 2 // org.graalvm.polyglot.Value fnc
        end local 1 // org.graalvm.polyglot.Source src
        end local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/truffle/sl/test/SLInteropOperatorTest;
            1    7     1   src  Lorg/graalvm/polyglot/Source;
            2    7     2   fnc  Lorg/graalvm/polyglot/Value;
            4    7     3   res  Lorg/graalvm/polyglot/Value;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testSub();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
         0: .line 76
            ldc "sl"
            ldc "function testSub(a,b) {return a - b;} function main() {return testSub;}"
            ldc "testSub.sl"
            invokestatic org.graalvm.polyglot.Source.newBuilder:(Ljava/lang/String;Ljava/lang/CharSequence;Ljava/lang/String;)Lorg/graalvm/polyglot/Source$Builder;
            invokevirtual org.graalvm.polyglot.Source$Builder.buildLiteral:()Lorg/graalvm/polyglot/Source;
            astore 1 /* src */
        start local 1 // org.graalvm.polyglot.Source src
         1: .line 77
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInteropOperatorTest.context:Lorg/graalvm/polyglot/Context;
            aload 1 /* src */
            invokevirtual org.graalvm.polyglot.Context.eval:(Lorg/graalvm/polyglot/Source;)Lorg/graalvm/polyglot/Value;
            astore 2 /* fnc */
        start local 2 // org.graalvm.polyglot.Value fnc
         2: .line 78
            aload 2 /* fnc */
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_1
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_1
            iconst_2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            astore 3 /* res */
        start local 3 // org.graalvm.polyglot.Value res
         3: .line 79
            aload 3 /* res */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         4: .line 80
            ldc -1
            aload 3 /* res */
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(JJ)V
         5: .line 81
            return
        end local 3 // org.graalvm.polyglot.Value res
        end local 2 // org.graalvm.polyglot.Value fnc
        end local 1 // org.graalvm.polyglot.Source src
        end local 0 // com.oracle.truffle.sl.test.SLInteropOperatorTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/oracle/truffle/sl/test/SLInteropOperatorTest;
            1    6     1   src  Lorg/graalvm/polyglot/Source;
            2    6     2   fnc  Lorg/graalvm/polyglot/Value;
            3    6     3   res  Lorg/graalvm/polyglot/Value;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "SLInteropOperatorTest.java"
InnerClasses:
  public Builder = org.graalvm.polyglot.Source$Builder of org.graalvm.polyglot.Source