public class com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider implements org.graalvm.polyglot.tck.LanguageProvider
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider
  super_class: java.lang.Object
{
  private static final java.lang.String ID;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "js"

  private static final java.lang.String PATTERN_VALUE_FNC;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "(function () {return %s;})"

  private static final java.lang.String PATTERN_BIN_OP_FNC;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "(function (a,b) {return a %s b;})"

  private static final java.lang.String PATTERN_PREFIX_OP_FNC;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "(function (a) {return %s a;})"

  private static final java.lang.String PATTERN_POSTFIX_OP_FNC;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "(function (a) {return a %s;})"

  private static final java.lang.String[] PATTERN_STATEMENT;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 72
            iconst_4
            anewarray java.lang.String
            dup
            iconst_0
         1: .line 73
            ldc "(function () {let r; %s\n return r;})"
            aastore
            dup
            iconst_1
         2: .line 74
            ldc "(function (p1) {let r; %s\n return r;})"
            aastore
            dup
            iconst_2
         3: .line 75
            ldc "(function (p1, p2) {let r; %s\n return r;})"
            aastore
            dup
            iconst_3
         4: .line 76
            ldc "(function (p1, p2, p3) {let r; %s\n return r;})"
            aastore
         5: .line 72
            putstatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.PATTERN_STATEMENT:[Ljava/lang/String;
         6: .line 77
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  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.sdk.tck.JavaScriptTCKLanguageProvider this
         0: .line 79
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 80
            return
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;

  public java.lang.String getId();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
         0: .line 84
            ldc "js"
            areturn
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;

  public org.graalvm.polyglot.Value createIdentityFunction(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Lorg/graalvm/polyglot/Value;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 89
            aload 1 /* context */
            ldc "(function (a) {return a;})"
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            areturn
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0    1     1  context  Lorg/graalvm/polyglot/Context;
    MethodParameters:
         Name  Flags
      context  final

  public java.util.Collection<? extends org.graalvm.polyglot.tck.Snippet> createValueConstructors(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 94
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* vals */
        start local 2 // java.util.List vals
         1: .line 96
            aload 2 /* vals */
            aload 1 /* context */
            ldc "false"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 98
            aload 2 /* vals */
            aload 1 /* context */
            ldc "1"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 99
            aload 2 /* vals */
            aload 1 /* context */
            ldc "1.1"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 101
            aload 2 /* vals */
            aload 1 /* context */
            ldc "'test'"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 103
            aload 2 /* vals */
            aload 1 /* context */
            ldc "'0123456789' + '0123456789'"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         6: .line 105
            iconst_2
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
         7: .line 106
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
         8: .line 107
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.array:(Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
         9: .line 105
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.intersection:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            astore 3 /* numArray */
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor numArray
        10: .line 108
            aload 2 /* vals */
            aload 1 /* context */
            ldc "[1,2]"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        11: .line 109
            aload 2 /* vals */
            aload 1 /* context */
            ldc "['A',65]"
            iconst_2
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        12: .line 111
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
        13: .line 112
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ARRAY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        14: .line 110
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.intersection:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
        15: .line 109
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        16: .line 113
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Uint8Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        17: .line 114
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Uint16Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        18: .line 115
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Uint32Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        19: .line 116
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Int8Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        20: .line 117
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Int16Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        21: .line 118
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Int32Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        22: .line 119
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Int32Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        23: .line 120
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Float32Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        24: .line 121
            aload 2 /* vals */
            aload 1 /* context */
            ldc "new Float64Array(2)"
            aload 3 /* numArray */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        25: .line 123
            aload 2 /* vals */
            aload 1 /* context */
            ldc "({'name':'test'})"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        26: .line 125
            aload 2 /* vals */
            aload 1 /* context */
            ldc "function(){}"
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        27: .line 126
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.EXECUTABLE:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
        28: .line 127
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
        29: .line 128
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.META_OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        30: .line 125
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.intersection:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        31: .line 130
            aload 2 /* vals */
        32: .line 131
            aload 1 /* context */
        33: .line 132
            ldc "new Proxy(function() {}, {\n    get : function(target, propKey) {\n        if (propKey == Symbol.toPrimitive) {\n            return function() {return '{?:42}'};\n        } else if (propKey == Symbol.iterator) {\n            return function() {return {next: function() {return {done:true};}};};\n        } else {\n            return 42;\n        }\n    },\n    has : function(target, propKey) {return true;},\n    apply: function(target, thisArg, argumentsList) {}\n});"
            iconst_2
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        34: .line 146
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.EXECUTABLE:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
        35: .line 147
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        36: .line 145
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.intersection:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
        37: .line 130
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createValueConstructor:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        38: .line 148
            aload 2 /* vals */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor numArray
        end local 2 // java.util.List vals
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   39     0      this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0   39     1   context  Lorg/graalvm/polyglot/Context;
            1   39     2      vals  Ljava/util/List<Lorg/graalvm/polyglot/tck/Snippet;>;
           10   39     3  numArray  Lorg/graalvm/polyglot/tck/TypeDescriptor;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/tck/Snippet;>;
    MethodParameters:
         Name  Flags
      context  final

  public java.util.Collection<? extends org.graalvm.polyglot.tck.Snippet> createExpressions(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 153
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* ops */
        start local 2 // java.util.List ops
         1: .line 154
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
         2: .line 155
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
         3: .line 156
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
         4: .line 157
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
         5: .line 154
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.union:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            astore 3 /* numericAndNull */
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor numericAndNull
         6: .line 158
            iconst_0
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.intersection:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            astore 4 /* noType */
        start local 4 // org.graalvm.polyglot.tck.TypeDescriptor noType
         7: .line 159
            bipush 10
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
         8: .line 160
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
         9: .line 161
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
        10: .line 162
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ARRAY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_3
        11: .line 163
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.EXECUTABLE_ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_4
        12: .line 164
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.TIME:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_5
        13: .line 165
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.DATE:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            bipush 6
        14: .line 166
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.DURATION:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            bipush 7
        15: .line 167
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.TIME_ZONE:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            bipush 8
        16: .line 168
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.META_OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            bipush 9
        17: .line 169
            aload 4 /* noType */
            aastore
        18: .line 159
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.union:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            astore 5 /* nonNumeric */
        start local 5 // org.graalvm.polyglot.tck.TypeDescriptor nonNumeric
        19: .line 171
            aload 2 /* ops */
            aload 1 /* context */
            ldc "+"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aload 3 /* numericAndNull */
            aload 3 /* numericAndNull */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        20: .line 172
            aload 2 /* ops */
            aload 1 /* context */
            ldc "+"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aload 5 /* nonNumeric */
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier.numericVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/ResultVerifier;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        21: .line 173
            aload 2 /* ops */
            aload 1 /* context */
            ldc "+"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aload 5 /* nonNumeric */
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier.numericVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/ResultVerifier;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        22: .line 175
            aload 2 /* ops */
            aload 1 /* context */
            ldc "-"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        23: .line 177
            aload 2 /* ops */
            aload 1 /* context */
            ldc "*"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        24: .line 179
            aload 2 /* ops */
            aload 1 /* context */
            ldc "/"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        25: .line 181
            aload 2 /* ops */
            aload 1 /* context */
            ldc "%"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        26: .line 183
            aload 2 /* ops */
            aload 1 /* context */
            ldc "**"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        27: .line 185
            aload 2 /* ops */
            aload 1 /* context */
            ldc "<"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        28: .line 187
            aload 2 /* ops */
            aload 1 /* context */
            ldc ">"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        29: .line 189
            aload 2 /* ops */
            aload 1 /* context */
            ldc "<="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        30: .line 191
            aload 2 /* ops */
            aload 1 /* context */
            ldc ">="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        31: .line 193
            aload 2 /* ops */
            aload 1 /* context */
            ldc "<<"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        32: .line 195
            aload 2 /* ops */
            aload 1 /* context */
            ldc ">>"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        33: .line 197
            aload 2 /* ops */
            aload 1 /* context */
            ldc ">>>"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        34: .line 199
            aload 2 /* ops */
            aload 1 /* context */
            ldc "&"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        35: .line 201
            aload 2 /* ops */
            aload 1 /* context */
            ldc "|"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        36: .line 203
            aload 2 /* ops */
            aload 1 /* context */
            ldc "^"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        37: .line 205
            aload 2 /* ops */
            aload 1 /* context */
            ldc "&&"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        38: .line 207
            aload 2 /* ops */
            aload 1 /* context */
            ldc "||"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        39: .line 209
            aload 2 /* ops */
            aload 1 /* context */
            ldc "??"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        40: .line 211
            aload 2 /* ops */
            aload 1 /* context */
            ldc "=="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        41: .line 213
            aload 2 /* ops */
            aload 1 /* context */
            ldc "!="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        42: .line 215
            aload 2 /* ops */
            aload 1 /* context */
            ldc "==="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        43: .line 217
            aload 2 /* ops */
            aload 1 /* context */
            ldc "!=="
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        44: .line 219
            aload 2 /* ops */
            aload 1 /* context */
            ldc "in"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
        45: .line 220
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        46: .line 221
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ARRAY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.EXECUTABLE_ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.union:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
        47: .line 219
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        48: .line 223
            aload 2 /* ops */
            aload 1 /* context */
            ldc "instanceof"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.META_OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        49: .line 226
            aload 2 /* ops */
            aload 1 /* context */
            ldc "+"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        50: .line 228
            aload 2 /* ops */
            aload 1 /* context */
            ldc "-"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        51: .line 230
            aload 2 /* ops */
            aload 1 /* context */
            ldc "~"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        52: .line 232
            aload 2 /* ops */
            aload 1 /* context */
            ldc "++"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        53: .line 234
            aload 2 /* ops */
            aload 1 /* context */
            ldc "--"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        54: .line 236
            aload 2 /* ops */
            aload 1 /* context */
            ldc "++"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPostfixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        55: .line 238
            aload 2 /* ops */
            aload 1 /* context */
            ldc "--"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPostfixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        56: .line 240
            aload 2 /* ops */
            aload 1 /* context */
            ldc "typeof"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        57: .line 242
            aload 2 /* ops */
            aload 1 /* context */
            ldc "void"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        58: .line 244
            aload 2 /* ops */
            aload 1 /* context */
            ldc "!"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createPrefixOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        59: .line 247
            aload 1 /* context */
            ldc "(function (a,b,c) {return a ? b : c;})"
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            astore 6 /* conditional */
        start local 6 // org.graalvm.polyglot.Value conditional
        60: .line 248
            aload 2 /* ops */
            ldc "?:"
            aload 6 /* conditional */
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.parameterTypes:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        61: .line 250
            aload 2 /* ops */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 6 // org.graalvm.polyglot.Value conditional
        end local 5 // org.graalvm.polyglot.tck.TypeDescriptor nonNumeric
        end local 4 // org.graalvm.polyglot.tck.TypeDescriptor noType
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor numericAndNull
        end local 2 // java.util.List ops
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   62     0            this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0   62     1         context  Lorg/graalvm/polyglot/Context;
            1   62     2             ops  Ljava/util/List<Lorg/graalvm/polyglot/tck/Snippet;>;
            6   62     3  numericAndNull  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            7   62     4          noType  Lorg/graalvm/polyglot/tck/TypeDescriptor;
           19   62     5      nonNumeric  Lorg/graalvm/polyglot/tck/TypeDescriptor;
           60   62     6     conditional  Lorg/graalvm/polyglot/Value;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/tck/Snippet;>;
    MethodParameters:
         Name  Flags
      context  final

  public java.util.Collection<? extends org.graalvm.polyglot.tck.Snippet> createStatements(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=13, locals=3, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 255
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* res */
        start local 2 // java.util.List res
         1: .line 257
            aload 2 /* res */
            aload 1 /* context */
            ldc "if"
            ldc "if ({1}) {0}=true ; else {0}=false;"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.BOOLEAN:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 259
            aload 2 /* res */
            aload 1 /* context */
            ldc "do"
            ldc "do break; while ({1});"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 261
            aload 2 /* res */
            aload 1 /* context */
            ldc "while"
            ldc "while ({1}) break;"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 263
            aload 2 /* res */
            aload 1 /* context */
            ldc "for"
            ldc "let guard = false; for (let i = {1}; {2} ; {3}) if (guard) break; else guard = true;"
         5: .line 264
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
         6: .line 265
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
         7: .line 263
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 267
            aload 2 /* res */
            aload 1 /* context */
            ldc "for-in"
            ldc "for (let k in {1});"
         9: .line 268
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        10: .line 269
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        11: .line 267
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        12: .line 271
            aload 2 /* res */
            aload 1 /* context */
            ldc "for-of"
            ldc "for (let v of {1});"
        13: .line 272
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
        14: .line 273
            aload 1 /* context */
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier.foreignOrHasIteratorVerifier:(Lorg/graalvm/polyglot/Context;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/ResultVerifier;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            iconst_3
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        15: .line 275
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.STRING:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_1
        16: .line 276
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            dup
            iconst_2
        17: .line 277
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ARRAY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        18: .line 274
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.union:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        19: .line 271
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        20: .line 279
            aload 2 /* res */
            aload 1 /* context */
            ldc "with"
            ldc "with({1}) undefined"
        21: .line 280
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
        22: .line 281
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier.hasKeysVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/ResultVerifier;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        23: .line 282
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        24: .line 279
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        25: .line 285
            aload 2 /* res */
            aload 1 /* context */
            ldc "switch"
            ldc "switch({1})'{' case true: break;'}'"
        26: .line 286
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
        27: .line 287
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
        28: .line 285
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        29: .line 289
            aload 2 /* res */
            aload 1 /* context */
            ldc "throw"
            ldc "try'{' throw {1};'}' catch(e)'{}'"
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NULL:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aastore
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        30: .line 290
            aload 2 /* res */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 2 // java.util.List res
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   31     0     this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0   31     1  context  Lorg/graalvm/polyglot/Context;
            1   31     2      res  Ljava/util/List<Lorg/graalvm/polyglot/tck/Snippet;>;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/tck/Snippet;>;
    MethodParameters:
         Name  Flags
      context  final

  public java.util.Collection<? extends org.graalvm.polyglot.tck.Snippet> createScripts(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 295
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* res */
        start local 2 // java.util.List res
         1: .line 296
            aload 2 /* res */
         2: .line 297
            aload 1 /* context */
         3: .line 298
            ldc "resources/arrayFactory.js"
         4: .line 299
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.OBJECT:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.array:(Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
         5: .line 300
            invokedynamic accept()Lorg/graalvm/polyglot/tck/ResultVerifier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  com/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider.lambda$0(Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V (6)
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  4
                  1
                  (Ljava/lang/Object;)V
         6: .line 296
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.loadScript:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 311
            aload 2 /* res */
         8: .line 312
            aload 1 /* context */
         9: .line 313
            ldc "resources/recursion.js"
        10: .line 314
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.NUMBER:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            invokestatic org.graalvm.polyglot.tck.TypeDescriptor.array:(Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/TypeDescriptor;
        11: .line 315
            invokedynamic accept()Lorg/graalvm/polyglot/tck/ResultVerifier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  com/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider.lambda$1(Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V (6)
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  4
                  1
                  (Ljava/lang/Object;)V
        12: .line 311
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.loadScript:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        13: .line 323
            aload 2 /* res */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 2 // java.util.List res
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0   14     1  context  Lorg/graalvm/polyglot/Context;
            1   14     2      res  Ljava/util/List<Lorg/graalvm/polyglot/tck/Snippet;>;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/tck/Snippet;>;
    MethodParameters:
         Name  Flags
      context  final

  public java.util.Collection<? extends org.graalvm.polyglot.tck.InlineSnippet> createInlineScripts(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 328
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* res */
        start local 2 // java.util.List res
         1: .line 329
            aload 2 /* res */
         2: .line 330
            aload 1 /* context */
         3: .line 331
            ldc "resources/recursion.js"
         4: .line 332
            bipush 63
         5: .line 333
            bipush 73
         6: .line 334
            ldc "resources/recursion_inline1.js"
         7: .line 329
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createInlineSnippet:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;IILjava/lang/String;)Lorg/graalvm/polyglot/tck/InlineSnippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         8: .line 335
            aload 2 /* res */
         9: .line 336
            aload 1 /* context */
        10: .line 337
            ldc "resources/recursion.js"
        11: .line 338
            iconst_m1
        12: .line 339
            iconst_m1
        13: .line 340
            ldc "resources/recursion_inline2.js"
        14: .line 335
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createInlineSnippet:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;IILjava/lang/String;)Lorg/graalvm/polyglot/tck/InlineSnippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        15: .line 343
            ldc "factorial"
        16: .line 344
            aload 1 /* context */
        17: .line 345
            ldc "js"
        18: .line 346
            ldc "(function (){\n  let factorial = function(n) {\n    let f = 1;\n    for (let i = 2; i <= n; i++) {\n      f *= i;\n    }\n  };\n  return factorial(10);\n})"
        19: .line 344
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
        20: .line 355
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
        21: .line 342
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            astore 3 /* scriptBuilder */
        start local 3 // org.graalvm.polyglot.tck.Snippet$Builder scriptBuilder
        22: .line 357
            aload 3 /* scriptBuilder */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
        23: .line 358
            ldc "n * n"
        24: .line 356
            invokestatic org.graalvm.polyglot.tck.InlineSnippet.newBuilder:(Lorg/graalvm/polyglot/tck/Snippet;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
        25: .line 358
            invokedynamic test()Ljava/util/function/Predicate;
              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;)Z
                  com/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider.lambda$2(Lorg/graalvm/polyglot/SourceSection;)Z (6)
                  (Lorg/graalvm/polyglot/SourceSection;)Z
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.locationPredicate:(Ljava/util/function/Predicate;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
        26: .line 356
            astore 4 /* builder */
        start local 4 // org.graalvm.polyglot.tck.InlineSnippet$Builder builder
        27: .line 362
            aload 2 /* res */
            aload 4 /* builder */
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.build:()Lorg/graalvm/polyglot/tck/InlineSnippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        28: .line 364
            aload 3 /* scriptBuilder */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
        29: .line 365
            ldc "Math.sin(Math.PI)"
        30: .line 363
            invokestatic org.graalvm.polyglot.tck.InlineSnippet.newBuilder:(Lorg/graalvm/polyglot/tck/Snippet;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
            astore 4 /* builder */
        31: .line 366
            aload 2 /* res */
            aload 4 /* builder */
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.build:()Lorg/graalvm/polyglot/tck/InlineSnippet;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        32: .line 367
            aload 2 /* res */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 4 // org.graalvm.polyglot.tck.InlineSnippet$Builder builder
        end local 3 // org.graalvm.polyglot.tck.Snippet$Builder scriptBuilder
        end local 2 // java.util.List res
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   33     0           this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0   33     1        context  Lorg/graalvm/polyglot/Context;
            1   33     2            res  Ljava/util/List<Lorg/graalvm/polyglot/tck/InlineSnippet;>;
           22   33     3  scriptBuilder  Lorg/graalvm/polyglot/tck/Snippet$Builder;
           27   33     4        builder  Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/tck/InlineSnippet;>;
    MethodParameters:
         Name  Flags
      context  

  public java.util.Collection<? extends org.graalvm.polyglot.Source> createInvalidSyntaxScripts(org.graalvm.polyglot.Context);
    descriptor: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
        start local 1 // org.graalvm.polyglot.Context context
         0: .line 372
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* res */
        start local 2 // java.util.List res
         1: .line 373
            aload 2 /* res */
            ldc "resources/invalidSyntax01.js"
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createSource:(Ljava/lang/String;)Lorg/graalvm/polyglot/Source;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 374
            aload 2 /* res */
            invokestatic java.util.Collections.unmodifiableList:(Ljava/util/List;)Ljava/util/List;
            areturn
        end local 2 // java.util.List res
        end local 1 // org.graalvm.polyglot.Context context
        end local 0 // com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            0    3     1  context  Lorg/graalvm/polyglot/Context;
            1    3     2      res  Ljava/util/List<Lorg/graalvm/polyglot/Source;>;
    Signature: (Lorg/graalvm/polyglot/Context;)Ljava/util/Collection<+Lorg/graalvm/polyglot/Source;>;
    MethodParameters:
         Name  Flags
      context  final

  private static org.graalvm.polyglot.tck.Snippet createValueConstructor(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String value
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
         0: .line 382
            aload 1 /* value */
         1: .line 383
            aload 0 /* context */
            ldc "(function () {return %s;})"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* value */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
         2: .line 384
            aload 2 /* type */
         3: .line 381
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            astore 3 /* opb */
        start local 3 // org.graalvm.polyglot.tck.Snippet$Builder opb
         4: .line 385
            aload 3 /* opb */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 3 // org.graalvm.polyglot.tck.Snippet$Builder opb
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String value
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0  context  Lorg/graalvm/polyglot/Context;
            0    5     1    value  Ljava/lang/String;
            0    5     2     type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            4    5     3      opb  Lorg/graalvm/polyglot/tck/Snippet$Builder;
    MethodParameters:
         Name  Flags
      context  final
      value    final
      type     final

  private static org.graalvm.polyglot.tck.Snippet createPrefixOperator(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String operator
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor rtype
         0: .line 393
            aload 0 /* context */
            ldc "(function (a) {return %s a;})"
            aload 1 /* operator */
            aload 2 /* type */
            aload 3 /* rtype */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createUnaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor rtype
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String operator
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0   context  Lorg/graalvm/polyglot/Context;
            0    1     1  operator  Ljava/lang/String;
            0    1     2      type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    1     3     rtype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
    MethodParameters:
          Name  Flags
      context   final
      operator  final
      type      final
      rtype     final

  private static org.graalvm.polyglot.tck.Snippet createPostfixOperator(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String operator
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
         0: .line 401
            aload 0 /* context */
            ldc "(function (a) {return a %s;})"
            aload 1 /* operator */
            aload 2 /* type */
            aload 3 /* ltype */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createUnaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String operator
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0   context  Lorg/graalvm/polyglot/Context;
            0    1     1  operator  Ljava/lang/String;
            0    1     2      type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    1     3     ltype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
    MethodParameters:
          Name  Flags
      context   final
      operator  final
      type      final
      ltype     final

  private static org.graalvm.polyglot.tck.Snippet createUnaryOperator(org.graalvm.polyglot.Context, java.lang.String, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=5
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String template
        start local 2 // java.lang.String operator
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 4 // org.graalvm.polyglot.tck.TypeDescriptor paramType
         0: .line 410
            aload 0 /* context */
            aload 1 /* template */
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* operator */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            astore 5 /* fnc */
        start local 5 // org.graalvm.polyglot.Value fnc
         1: .line 411
            aload 2 /* operator */
            aload 5 /* fnc */
            aload 3 /* type */
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            iconst_1
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            aload 4 /* paramType */
            aastore
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.parameterTypes:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            astore 6 /* opb */
        start local 6 // org.graalvm.polyglot.tck.Snippet$Builder opb
         2: .line 412
            aload 6 /* opb */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 6 // org.graalvm.polyglot.tck.Snippet$Builder opb
        end local 5 // org.graalvm.polyglot.Value fnc
        end local 4 // org.graalvm.polyglot.tck.TypeDescriptor paramType
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 2 // java.lang.String operator
        end local 1 // java.lang.String template
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0    context  Lorg/graalvm/polyglot/Context;
            0    3     1   template  Ljava/lang/String;
            0    3     2   operator  Ljava/lang/String;
            0    3     3       type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    3     4  paramType  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            1    3     5        fnc  Lorg/graalvm/polyglot/Value;
            2    3     6        opb  Lorg/graalvm/polyglot/tck/Snippet$Builder;
    MethodParameters:
           Name  Flags
      context    final
      template   final
      operator   final
      type       final
      paramType  final

  private static org.graalvm.polyglot.tck.Snippet createBinaryOperator(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String operator
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
        start local 4 // org.graalvm.polyglot.tck.TypeDescriptor rtype
         0: .line 421
            aload 0 /* context */
            aload 1 /* operator */
            aload 2 /* type */
            aload 3 /* ltype */
            aload 4 /* rtype */
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createBinaryOperator:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 4 // org.graalvm.polyglot.tck.TypeDescriptor rtype
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String operator
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0   context  Lorg/graalvm/polyglot/Context;
            0    1     1  operator  Ljava/lang/String;
            0    1     2      type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    1     3     ltype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    1     4     rtype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
    MethodParameters:
          Name  Flags
      context   final
      operator  final
      type      final
      ltype     final
      rtype     final

  private static org.graalvm.polyglot.tck.Snippet createBinaryOperator(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.ResultVerifier);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=6, locals=7, args_size=6
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String operator
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
        start local 4 // org.graalvm.polyglot.tck.TypeDescriptor rtype
        start local 5 // org.graalvm.polyglot.tck.ResultVerifier verifier
         0: .line 431
            aload 0 /* context */
            ldc "(function (a,b) {return a %s b;})"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* operator */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            astore 6 /* fnc */
        start local 6 // org.graalvm.polyglot.Value fnc
         1: .line 432
            aload 1 /* operator */
            aload 6 /* fnc */
            aload 2 /* type */
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            iconst_2
            anewarray org.graalvm.polyglot.tck.TypeDescriptor
            dup
            iconst_0
            aload 3 /* ltype */
            aastore
            dup
            iconst_1
            aload 4 /* rtype */
            aastore
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.parameterTypes:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            aload 5 /* verifier */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.resultVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 6 // org.graalvm.polyglot.Value fnc
        end local 5 // org.graalvm.polyglot.tck.ResultVerifier verifier
        end local 4 // org.graalvm.polyglot.tck.TypeDescriptor rtype
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor ltype
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String operator
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0   context  Lorg/graalvm/polyglot/Context;
            0    2     1  operator  Ljava/lang/String;
            0    2     2      type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    2     3     ltype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    2     4     rtype  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    2     5  verifier  Lorg/graalvm/polyglot/tck/ResultVerifier;
            1    2     6       fnc  Lorg/graalvm/polyglot/Value;
    MethodParameters:
          Name  Flags
      context   final
      operator  final
      type      final
      ltype     final
      rtype     final
      verifier  final

  private static org.graalvm.polyglot.tck.Snippet createStatement(org.graalvm.polyglot.Context, java.lang.String, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.TypeDescriptor[]);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x008a) ACC_PRIVATE, ACC_STATIC, ACC_VARARGS
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String name
        start local 2 // java.lang.String expression
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 4 // org.graalvm.polyglot.tck.TypeDescriptor[] paramTypes
         0: .line 441
            aload 0 /* context */
            aload 1 /* name */
            aload 2 /* expression */
            aload 3 /* type */
            aconst_null
            aload 4 /* paramTypes */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createStatement:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 4 // org.graalvm.polyglot.tck.TypeDescriptor[] paramTypes
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 2 // java.lang.String expression
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    1     0     context  Lorg/graalvm/polyglot/Context;
            0    1     1        name  Ljava/lang/String;
            0    1     2  expression  Ljava/lang/String;
            0    1     3        type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    1     4  paramTypes  [Lorg/graalvm/polyglot/tck/TypeDescriptor;
    MethodParameters:
            Name  Flags
      context     final
      name        final
      expression  final
      type        final
      paramTypes  final

  private static org.graalvm.polyglot.tck.Snippet createStatement(org.graalvm.polyglot.Context, java.lang.String, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.ResultVerifier, org.graalvm.polyglot.tck.TypeDescriptor[]);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;[Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x008a) ACC_PRIVATE, ACC_STATIC, ACC_VARARGS
    Code:
      stack=6, locals=11, args_size=6
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String name
        start local 2 // java.lang.String expression
        start local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 4 // org.graalvm.polyglot.tck.ResultVerifier resultVerifier
        start local 5 // org.graalvm.polyglot.tck.TypeDescriptor[] paramTypes
         0: .line 451
            getstatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.PATTERN_STATEMENT:[Ljava/lang/String;
            aload 5 /* paramTypes */
            arraylength
            aaload
            astore 6 /* fncFormat */
        start local 6 // java.lang.String fncFormat
         1: .line 452
            aload 5 /* paramTypes */
            arraylength
            iconst_1
            iadd
            anewarray java.lang.String
            astore 7 /* formalParams */
        start local 7 // java.lang.Object[] formalParams
         2: .line 453
            aload 7 /* formalParams */
            iconst_0
            ldc "r"
            aastore
         3: .line 454
            iconst_1
            istore 8 /* i */
        start local 8 // int i
         4: goto 7
         5: .line 455
      StackMap locals: java.lang.String java.lang.Object[] int
      StackMap stack:
            aload 7 /* formalParams */
            iload 8 /* i */
            new java.lang.StringBuilder
            dup
            ldc "p"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 8 /* i */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            aastore
         6: .line 454
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 8 /* i */
            aload 7 /* formalParams */
            arraylength
            if_icmplt 5
        end local 8 // int i
         8: .line 457
            aload 2 /* expression */
            aload 7 /* formalParams */
            invokestatic java.text.MessageFormat.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 8 /* exprWithFormalParams */
        start local 8 // java.lang.String exprWithFormalParams
         9: .line 458
            aload 0 /* context */
            aload 6 /* fncFormat */
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 8 /* exprWithFormalParams */
            aastore
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.eval:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            astore 9 /* fnc */
        start local 9 // org.graalvm.polyglot.Value fnc
        10: .line 459
            aload 1 /* name */
            aload 9 /* fnc */
            aload 3 /* type */
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            aload 5 /* paramTypes */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.parameterTypes:([Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            astore 10 /* opb */
        start local 10 // org.graalvm.polyglot.tck.Snippet$Builder opb
        11: .line 460
            aload 4 /* resultVerifier */
            ifnull 13
        12: .line 461
            aload 10 /* opb */
            aload 4 /* resultVerifier */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.resultVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            pop
        13: .line 463
      StackMap locals: org.graalvm.polyglot.Context java.lang.String java.lang.String org.graalvm.polyglot.tck.TypeDescriptor org.graalvm.polyglot.tck.ResultVerifier org.graalvm.polyglot.tck.TypeDescriptor[] java.lang.String java.lang.Object[] java.lang.String org.graalvm.polyglot.Value org.graalvm.polyglot.tck.Snippet$Builder
      StackMap stack:
            aload 10 /* opb */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 10 // org.graalvm.polyglot.tck.Snippet$Builder opb
        end local 9 // org.graalvm.polyglot.Value fnc
        end local 8 // java.lang.String exprWithFormalParams
        end local 7 // java.lang.Object[] formalParams
        end local 6 // java.lang.String fncFormat
        end local 5 // org.graalvm.polyglot.tck.TypeDescriptor[] paramTypes
        end local 4 // org.graalvm.polyglot.tck.ResultVerifier resultVerifier
        end local 3 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 2 // java.lang.String expression
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   14     0               context  Lorg/graalvm/polyglot/Context;
            0   14     1                  name  Ljava/lang/String;
            0   14     2            expression  Ljava/lang/String;
            0   14     3                  type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0   14     4        resultVerifier  Lorg/graalvm/polyglot/tck/ResultVerifier;
            0   14     5            paramTypes  [Lorg/graalvm/polyglot/tck/TypeDescriptor;
            1   14     6             fncFormat  Ljava/lang/String;
            2   14     7          formalParams  [Ljava/lang/Object;
            4    8     8                     i  I
            9   14     8  exprWithFormalParams  Ljava/lang/String;
           10   14     9                   fnc  Lorg/graalvm/polyglot/Value;
           11   14    10                   opb  Lorg/graalvm/polyglot/tck/Snippet$Builder;
    MethodParameters:
                Name  Flags
      context         final
      name            final
      expression      final
      type            final
      resultVerifier  final
      paramTypes      final

  private static org.graalvm.polyglot.tck.Snippet loadScript(org.graalvm.polyglot.Context, java.lang.String, org.graalvm.polyglot.tck.TypeDescriptor, org.graalvm.polyglot.tck.ResultVerifier);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String resourceName
        start local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        start local 3 // org.graalvm.polyglot.tck.ResultVerifier verifier
         0: .line 471
            aload 1 /* resourceName */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createSource:(Ljava/lang/String;)Lorg/graalvm/polyglot/Source;
            astore 4 /* src */
        start local 4 // org.graalvm.polyglot.Source src
         1: .line 472
            aload 4 /* src */
            invokevirtual org.graalvm.polyglot.Source.getName:()Ljava/lang/String;
            aload 0 /* context */
            aload 4 /* src */
            invokevirtual org.graalvm.polyglot.Context.eval:(Lorg/graalvm/polyglot/Source;)Lorg/graalvm/polyglot/Value;
            aload 2 /* type */
            invokestatic org.graalvm.polyglot.tck.Snippet.newBuilder:(Ljava/lang/String;Lorg/graalvm/polyglot/Value;Lorg/graalvm/polyglot/tck/TypeDescriptor;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            aload 3 /* verifier */
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.resultVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet$Builder;
            invokevirtual org.graalvm.polyglot.tck.Snippet$Builder.build:()Lorg/graalvm/polyglot/tck/Snippet;
            areturn
        end local 4 // org.graalvm.polyglot.Source src
        end local 3 // org.graalvm.polyglot.tck.ResultVerifier verifier
        end local 2 // org.graalvm.polyglot.tck.TypeDescriptor type
        end local 1 // java.lang.String resourceName
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0       context  Lorg/graalvm/polyglot/Context;
            0    2     1  resourceName  Ljava/lang/String;
            0    2     2          type  Lorg/graalvm/polyglot/tck/TypeDescriptor;
            0    2     3      verifier  Lorg/graalvm/polyglot/tck/ResultVerifier;
            1    2     4           src  Lorg/graalvm/polyglot/Source;
    MethodParameters:
              Name  Flags
      context       final
      resourceName  final
      type          final
      verifier      final

  private static org.graalvm.polyglot.Source createSource(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/graalvm/polyglot/Source;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // java.lang.String resourceName
         0: .line 477
            aload 0 /* resourceName */
            bipush 47
            invokevirtual java.lang.String.lastIndexOf:(I)I
            istore 1 /* slashIndex */
        start local 1 // int slashIndex
         1: .line 478
            iload 1 /* slashIndex */
            iflt 2
            aload 0 /* resourceName */
            iload 1 /* slashIndex */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aload 0 /* resourceName */
      StackMap locals:
      StackMap stack: java.lang.String
         3: astore 2 /* scriptName */
        start local 2 // java.lang.String scriptName
         4: .line 479
            new java.io.InputStreamReader
            dup
            ldc Lcom/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider;
            aload 0 /* resourceName */
            invokevirtual java.lang.Class.getResourceAsStream:(Ljava/lang/String;)Ljava/io/InputStream;
            ldc "UTF-8"
            invokespecial java.io.InputStreamReader.<init>:(Ljava/io/InputStream;Ljava/lang/String;)V
            astore 3 /* in */
        start local 3 // java.io.Reader in
         5: .line 480
            ldc "js"
            aload 3 /* in */
            aload 2 /* scriptName */
            invokestatic org.graalvm.polyglot.Source.newBuilder:(Ljava/lang/String;Ljava/io/Reader;Ljava/lang/String;)Lorg/graalvm/polyglot/Source$Builder;
            invokevirtual org.graalvm.polyglot.Source$Builder.build:()Lorg/graalvm/polyglot/Source;
         6: areturn
        end local 3 // java.io.Reader in
        end local 2 // java.lang.String scriptName
        end local 1 // int slashIndex
         7: .line 481
      StackMap locals: java.lang.String
      StackMap stack: java.io.IOException
            astore 1 /* ioe */
        start local 1 // java.io.IOException ioe
         8: .line 482
            new java.lang.AssertionError
            dup
            ldc "IOException while creating a test script."
            aload 1 /* ioe */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/String;Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.io.IOException ioe
        end local 0 // java.lang.String resourceName
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0  resourceName  Ljava/lang/String;
            1    7     1    slashIndex  I
            4    7     2    scriptName  Ljava/lang/String;
            5    7     3            in  Ljava/io/Reader;
            8    9     1           ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     6       7  Class java.io.IOException
    MethodParameters:
              Name  Flags
      resourceName  final

  private static org.graalvm.polyglot.tck.InlineSnippet createInlineSnippet(org.graalvm.polyglot.Context, java.lang.String, int, int, java.lang.String);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;IILjava/lang/String;)Lorg/graalvm/polyglot/tck/InlineSnippet;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=8, args_size=5
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String sourceName
        start local 2 // int l1
        start local 3 // int l2
        start local 4 // java.lang.String snippetName
         0: .line 487
            aload 0 /* context */
            aload 1 /* sourceName */
            getstatic org.graalvm.polyglot.tck.TypeDescriptor.ANY:Lorg/graalvm/polyglot/tck/TypeDescriptor;
            aconst_null
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.loadScript:(Lorg/graalvm/polyglot/Context;Ljava/lang/String;Lorg/graalvm/polyglot/tck/TypeDescriptor;Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/Snippet;
            astore 5 /* script */
        start local 5 // org.graalvm.polyglot.tck.Snippet script
         1: .line 489
            iload 2 /* l1 */
            ifle 4
            iload 2 /* l1 */
            iload 3 /* l2 */
            if_icmpgt 4
         2: .line 490
            iload 2 /* l1 */
            iload 3 /* l2 */
            invokedynamic test(II)Ljava/util/function/Predicate;
              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;)Z
                  com/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider.lambda$3(IILorg/graalvm/polyglot/SourceSection;)Z (6)
                  (Lorg/graalvm/polyglot/SourceSection;)Z
            astore 6 /* locationPredicate */
        start local 6 // java.util.function.Predicate locationPredicate
         3: .line 493
            goto 5
        end local 6 // java.util.function.Predicate locationPredicate
         4: .line 494
      StackMap locals: org.graalvm.polyglot.tck.Snippet
      StackMap stack:
            aconst_null
            astore 6 /* locationPredicate */
        start local 6 // java.util.function.Predicate locationPredicate
         5: .line 496
      StackMap locals: java.util.function.Predicate
      StackMap stack:
            aload 5 /* script */
            aload 4 /* snippetName */
            invokestatic com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider.createSource:(Ljava/lang/String;)Lorg/graalvm/polyglot/Source;
            invokevirtual org.graalvm.polyglot.Source.getCharacters:()Ljava/lang/CharSequence;
            invokestatic org.graalvm.polyglot.tck.InlineSnippet.newBuilder:(Lorg/graalvm/polyglot/tck/Snippet;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
            astore 7 /* snippetBuilder */
        start local 7 // org.graalvm.polyglot.tck.InlineSnippet$Builder snippetBuilder
         6: .line 497
            aload 6 /* locationPredicate */
            ifnull 8
         7: .line 498
            aload 7 /* snippetBuilder */
            aload 6 /* locationPredicate */
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.locationPredicate:(Ljava/util/function/Predicate;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
            pop
         8: .line 500
      StackMap locals: org.graalvm.polyglot.tck.InlineSnippet$Builder
      StackMap stack:
            aload 7 /* snippetBuilder */
            aload 1 /* sourceName */
            invokedynamic accept(Ljava/lang/String;)Lorg/graalvm/polyglot/tck/ResultVerifier;
              Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
                Method arguments:
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  com/oracle/truffle/js/test/sdk/tck/JavaScriptTCKLanguageProvider.lambda$4(Ljava/lang/String;Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V (6)
                  (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
                  4
                  1
                  (Ljava/lang/Object;)V
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.resultVerifier:(Lorg/graalvm/polyglot/tck/ResultVerifier;)Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
            pop
         9: .line 510
            aload 7 /* snippetBuilder */
            invokevirtual org.graalvm.polyglot.tck.InlineSnippet$Builder.build:()Lorg/graalvm/polyglot/tck/InlineSnippet;
            areturn
        end local 7 // org.graalvm.polyglot.tck.InlineSnippet$Builder snippetBuilder
        end local 6 // java.util.function.Predicate locationPredicate
        end local 5 // org.graalvm.polyglot.tck.Snippet script
        end local 4 // java.lang.String snippetName
        end local 3 // int l2
        end local 2 // int l1
        end local 1 // java.lang.String sourceName
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   10     0            context  Lorg/graalvm/polyglot/Context;
            0   10     1         sourceName  Ljava/lang/String;
            0   10     2                 l1  I
            0   10     3                 l2  I
            0   10     4        snippetName  Ljava/lang/String;
            1   10     5             script  Lorg/graalvm/polyglot/tck/Snippet;
            3    4     6  locationPredicate  Ljava/util/function/Predicate<Lorg/graalvm/polyglot/SourceSection;>;
            5   10     6  locationPredicate  Ljava/util/function/Predicate<Lorg/graalvm/polyglot/SourceSection;>;
            6   10     7     snippetBuilder  Lorg/graalvm/polyglot/tck/InlineSnippet$Builder;
    MethodParameters:
             Name  Flags
      context      
      sourceName   
      l1           
      l2           
      snippetName  

  private static org.graalvm.polyglot.Value eval(org.graalvm.polyglot.Context, java.lang.String);
    descriptor: (Lorg/graalvm/polyglot/Context;Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.graalvm.polyglot.Context context
        start local 1 // java.lang.String statement
         0: .line 514
            aload 0 /* context */
            ldc "js"
            aload 1 /* statement */
            invokevirtual org.graalvm.polyglot.Context.eval:(Ljava/lang/String;Ljava/lang/CharSequence;)Lorg/graalvm/polyglot/Value;
            areturn
        end local 1 // java.lang.String statement
        end local 0 // org.graalvm.polyglot.Context context
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0    context  Lorg/graalvm/polyglot/Context;
            0    1     1  statement  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      context    final
      statement  final

  private static void lambda$0(org.graalvm.polyglot.tck.ResultVerifier$SnippetRun);
    descriptor: (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
         0: .line 301
            invokestatic org.graalvm.polyglot.tck.ResultVerifier.getDefaultResultVerifier:()Lorg/graalvm/polyglot/tck/ResultVerifier;
            aload 0 /* snippetRun */
            invokeinterface org.graalvm.polyglot.tck.ResultVerifier.accept:(Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
         1: .line 302
            aload 0 /* snippetRun */
            invokevirtual org.graalvm.polyglot.tck.ResultVerifier$SnippetRun.getResult:()Lorg/graalvm/polyglot/Value;
            astore 1 /* result */
        start local 1 // org.graalvm.polyglot.Value result
         2: .line 303
            ldc "Array size"
            ldc 2
            aload 1 /* result */
            invokevirtual org.graalvm.polyglot.Value.getArraySize:()J
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         3: .line 304
            aload 1 /* result */
            lconst_0
            invokevirtual org.graalvm.polyglot.Value.getArrayElement:(J)Lorg/graalvm/polyglot/Value;
            astore 2 /* p1 */
        start local 2 // org.graalvm.polyglot.Value p1
         4: .line 305
            aload 1 /* result */
            lconst_1
            invokevirtual org.graalvm.polyglot.Value.getArrayElement:(J)Lorg/graalvm/polyglot/Value;
            astore 3 /* p2 */
        start local 3 // org.graalvm.polyglot.Value p2
         5: .line 306
            ldc "res[0].x"
            ldc 30
            aload 2 /* p1 */
            ldc "x"
            invokevirtual org.graalvm.polyglot.Value.getMember:(Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         6: .line 307
            ldc "res[0].y"
            ldc 15
            aload 2 /* p1 */
            ldc "y"
            invokevirtual org.graalvm.polyglot.Value.getMember:(Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         7: .line 308
            ldc "res[1].x"
            ldc 5
            aload 3 /* p2 */
            ldc "x"
            invokevirtual org.graalvm.polyglot.Value.getMember:(Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         8: .line 309
            ldc "res[1].y"
            ldc 7
            aload 3 /* p2 */
            ldc "y"
            invokevirtual org.graalvm.polyglot.Value.getMember:(Ljava/lang/String;)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
        end local 3 // org.graalvm.polyglot.Value p2
        end local 2 // org.graalvm.polyglot.Value p1
        end local 1 // org.graalvm.polyglot.Value result
         9: .line 310
            return
        end local 0 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0  snippetRun  Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;
            2    9     1      result  Lorg/graalvm/polyglot/Value;
            4    9     2          p1  Lorg/graalvm/polyglot/Value;
            5    9     3          p2  Lorg/graalvm/polyglot/Value;
    Exceptions:
      throws org.graalvm.polyglot.PolyglotException

  private static void lambda$1(org.graalvm.polyglot.tck.ResultVerifier$SnippetRun);
    descriptor: (Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
         0: .line 316
            invokestatic org.graalvm.polyglot.tck.ResultVerifier.getDefaultResultVerifier:()Lorg/graalvm/polyglot/tck/ResultVerifier;
            aload 0 /* snippetRun */
            invokeinterface org.graalvm.polyglot.tck.ResultVerifier.accept:(Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
         1: .line 317
            aload 0 /* snippetRun */
            invokevirtual org.graalvm.polyglot.tck.ResultVerifier$SnippetRun.getResult:()Lorg/graalvm/polyglot/Value;
            astore 1 /* result */
        start local 1 // org.graalvm.polyglot.Value result
         2: .line 318
            ldc "Array size"
            ldc 3
            aload 1 /* result */
            invokevirtual org.graalvm.polyglot.Value.getArraySize:()J
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         3: .line 319
            ldc "res[0]"
            ldc 3628800
            aload 1 /* result */
            lconst_0
            invokevirtual org.graalvm.polyglot.Value.getArrayElement:(J)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         4: .line 320
            ldc "res[1]"
            ldc 55
            aload 1 /* result */
            lconst_1
            invokevirtual org.graalvm.polyglot.Value.getArrayElement:(J)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
         5: .line 321
            ldc "res[2]"
            ldc 125
            aload 1 /* result */
            ldc 2
            invokevirtual org.graalvm.polyglot.Value.getArrayElement:(J)Lorg/graalvm/polyglot/Value;
            invokevirtual org.graalvm.polyglot.Value.asInt:()I
            i2l
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/String;JJ)V
        end local 1 // org.graalvm.polyglot.Value result
         6: .line 322
            return
        end local 0 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0  snippetRun  Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;
            2    6     1      result  Lorg/graalvm/polyglot/Value;
    Exceptions:
      throws org.graalvm.polyglot.PolyglotException

  private static boolean lambda$2(org.graalvm.polyglot.SourceSection);
    descriptor: (Lorg/graalvm/polyglot/SourceSection;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.graalvm.polyglot.SourceSection section
         0: .line 359
            aload 0 /* section */
            invokevirtual org.graalvm.polyglot.SourceSection.getStartLine:()I
            istore 1 /* line */
        start local 1 // int line
         1: .line 360
            iconst_3
            iload 1 /* line */
            if_icmpgt 2
            iload 1 /* line */
            bipush 6
            if_icmpgt 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 1 // int line
        end local 0 // org.graalvm.polyglot.SourceSection section
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0  section  Lorg/graalvm/polyglot/SourceSection;
            1    3     1     line  I

  private static boolean lambda$3(int, int, org.graalvm.polyglot.SourceSection);
    descriptor: (IILorg/graalvm/polyglot/SourceSection;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=3, args_size=3
        start local 2 // org.graalvm.polyglot.SourceSection ss
         0: .line 491
            iload 0
            aload 2 /* ss */
            invokevirtual org.graalvm.polyglot.SourceSection.getStartLine:()I
            if_icmpgt 1
            aload 2 /* ss */
            invokevirtual org.graalvm.polyglot.SourceSection.getEndLine:()I
            iload 1
            if_icmpgt 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 2 // org.graalvm.polyglot.SourceSection ss
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     2    ss  Lorg/graalvm/polyglot/SourceSection;

  private static void lambda$4(java.lang.String, org.graalvm.polyglot.tck.ResultVerifier$SnippetRun);
    descriptor: (Ljava/lang/String;Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;)V
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=5, locals=4, args_size=2
        start local 1 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
         0: .line 501
            aload 1 /* snippetRun */
            invokevirtual org.graalvm.polyglot.tck.ResultVerifier$SnippetRun.getException:()Lorg/graalvm/polyglot/PolyglotException;
            astore 2 /* exception */
        start local 2 // org.graalvm.polyglot.PolyglotException exception
         1: .line 502
            aload 2 /* exception */
            ifnull 3
         2: .line 503
            aload 2 /* exception */
            athrow
         3: .line 505
      StackMap locals: org.graalvm.polyglot.PolyglotException
      StackMap stack:
            aload 1 /* snippetRun */
            invokevirtual org.graalvm.polyglot.tck.ResultVerifier$SnippetRun.getResult:()Lorg/graalvm/polyglot/Value;
            astore 3 /* result */
        start local 3 // org.graalvm.polyglot.Value result
         4: .line 506
            aload 3 /* result */
            invokevirtual org.graalvm.polyglot.Value.isNumber:()Z
            ifne 6
         5: .line 507
            new java.lang.AssertionError
            dup
            new java.lang.StringBuilder
            dup
            ldc "Wrong value "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 3 /* result */
            invokevirtual org.graalvm.polyglot.Value.toString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " from "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // org.graalvm.polyglot.Value result
        end local 2 // org.graalvm.polyglot.PolyglotException exception
         6: .line 509
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.graalvm.polyglot.tck.ResultVerifier$SnippetRun snippetRun
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     1  snippetRun  Lorg/graalvm/polyglot/tck/ResultVerifier$SnippetRun;
            1    6     2   exception  Lorg/graalvm/polyglot/PolyglotException;
            4    6     3      result  Lorg/graalvm/polyglot/Value;
    Exceptions:
      throws org.graalvm.polyglot.PolyglotException
}
SourceFile: "JavaScriptTCKLanguageProvider.java"
NestMembers:
  com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier  com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier$1  com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier$2  com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier$3
InnerClasses:
  private JavaScriptVerifier = com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider$JavaScriptVerifier of com.oracle.truffle.js.test.sdk.tck.JavaScriptTCKLanguageProvider
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public Builder = org.graalvm.polyglot.Source$Builder of org.graalvm.polyglot.Source
  public final Builder = org.graalvm.polyglot.tck.InlineSnippet$Builder of org.graalvm.polyglot.tck.InlineSnippet
  public final SnippetRun = org.graalvm.polyglot.tck.ResultVerifier$SnippetRun of org.graalvm.polyglot.tck.ResultVerifier
  public final Builder = org.graalvm.polyglot.tck.Snippet$Builder of org.graalvm.polyglot.tck.Snippet