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

  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.SLInteropControlFlowTest 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.SLInteropControlFlowTest.context:Lorg/graalvm/polyglot/Context;
         1: .line 57
            return
        end local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/sl/test/SLInteropControlFlowTest;
    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.SLInteropControlFlowTest this
         0: .line 61
            aload 0 /* this */
            aconst_null
            putfield com.oracle.truffle.sl.test.SLInteropControlFlowTest.context:Lorg/graalvm/polyglot/Context;
         1: .line 62
            return
        end local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/sl/test/SLInteropControlFlowTest;
    RuntimeVisibleAnnotations: 
      org.junit.After()

  public void testWhile();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
         0: .line 66
            ldc "sl"
            ldc "function testWhile(a) {while(a) {break;}} function main() {return testWhile;}"
            ldc "testWhile.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.SLInteropControlFlowTest.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_1
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            pop
         4: .line 70
            return
        end local 2 // org.graalvm.polyglot.Value fnc
        end local 1 // org.graalvm.polyglot.Source src
        end local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/oracle/truffle/sl/test/SLInteropControlFlowTest;
            1    5     1   src  Lorg/graalvm/polyglot/Source;
            2    5     2   fnc  Lorg/graalvm/polyglot/Value;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testIf();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
         0: .line 74
            ldc "sl"
            ldc "function testIf(a) {if(a) {return 1;} else {return 0;}} function main() {return testIf;}"
            ldc "testIf.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 75
            aload 0 /* this */
            getfield com.oracle.truffle.sl.test.SLInteropControlFlowTest.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 76
            aload 2 /* fnc */
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iconst_0
            invokestatic java.lang.Boolean.valueOf:(Z)Ljava/lang/Boolean;
            aastore
            invokevirtual org.graalvm.polyglot.Value.execute:([Ljava/lang/Object;)Lorg/graalvm/polyglot/Value;
            pop
         3: .line 77
            return
        end local 2 // org.graalvm.polyglot.Value fnc
        end local 1 // org.graalvm.polyglot.Source src
        end local 0 // com.oracle.truffle.sl.test.SLInteropControlFlowTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/sl/test/SLInteropControlFlowTest;
            1    4     1   src  Lorg/graalvm/polyglot/Source;
            2    4     2   fnc  Lorg/graalvm/polyglot/Value;
    RuntimeVisibleAnnotations: 
      org.junit.Test()
}
SourceFile: "SLInteropControlFlowTest.java"
InnerClasses:
  public Builder = org.graalvm.polyglot.Source$Builder of org.graalvm.polyglot.Source