final class com.oracle.truffle.sl.runtime.FunctionsObject implements com.oracle.truffle.api.interop.TruffleObject
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.sl.runtime.FunctionsObject
  super_class: java.lang.Object
{
  final java.util.Map<java.lang.String, com.oracle.truffle.sl.runtime.SLFunction> functions;
    descriptor: Ljava/util/Map;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/String;Lcom/oracle/truffle/sl/runtime/SLFunction;>;

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 62
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield com.oracle.truffle.sl.runtime.FunctionsObject.functions:Ljava/util/Map;
         2: .line 65
            return
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;

  boolean hasLanguage();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 69
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Class<? extends com.oracle.truffle.api.TruffleLanguage<?>> getLanguage();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 74
            ldc Lcom/oracle/truffle/sl/SLLanguage;
            areturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    Signature: ()Ljava/lang/Class<+Lcom/oracle/truffle/api/TruffleLanguage<*>;>;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  boolean hasMembers();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 79
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Object readMember(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
        start local 1 // java.lang.String member
         0: .line 85
            aload 0 /* this */
            getfield com.oracle.truffle.sl.runtime.FunctionsObject.functions:Ljava/util/Map;
            aload 1 /* member */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* value */
        start local 2 // java.lang.Object value
         1: .line 86
            aload 2 /* value */
            ifnull 3
         2: .line 87
            aload 2 /* value */
            areturn
         3: .line 89
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* member */
            invokestatic com.oracle.truffle.api.interop.UnknownIdentifierException.create:(Ljava/lang/String;)Lcom/oracle/truffle/api/interop/UnknownIdentifierException;
            athrow
        end local 2 // java.lang.Object value
        end local 1 // java.lang.String member
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
            0    4     1  member  Ljava/lang/String;
            1    4     2   value  Ljava/lang/Object;
    Exceptions:
      throws com.oracle.truffle.api.interop.UnknownIdentifierException
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
        Name  Flags
      member  

  boolean isMemberReadable(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
        start local 1 // java.lang.String member
         0: .line 95
            aload 0 /* this */
            getfield com.oracle.truffle.sl.runtime.FunctionsObject.functions:Ljava/util/Map;
            aload 1 /* member */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.String member
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
            0    1     1  member  Ljava/lang/String;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
        Name  Flags
      member  

  java.lang.Object getMembers(boolean);
    descriptor: (Z)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
        start local 1 // boolean includeInternal
         0: .line 101
            new com.oracle.truffle.sl.runtime.FunctionsObject$FunctionNamesObject
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.sl.runtime.FunctionsObject.functions:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.toArray:()[Ljava/lang/Object;
            invokespecial com.oracle.truffle.sl.runtime.FunctionsObject$FunctionNamesObject.<init>:([Ljava/lang/Object;)V
            areturn
        end local 1 // boolean includeInternal
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
            0    1     1  includeInternal  Z
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
                 Name  Flags
      includeInternal  

  boolean hasMetaObject();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 106
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Object getMetaObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 111
            getstatic com.oracle.truffle.sl.runtime.SLType.OBJECT:Lcom/oracle/truffle/sl/runtime/SLType;
            areturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  boolean isScope();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
         0: .line 116
            iconst_1
            ireturn
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()

  java.lang.Object toDisplayString(boolean);
    descriptor: (Z)Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
        start local 1 // boolean allowSideEffects
         0: .line 122
            ldc "global"
            areturn
        end local 1 // boolean allowSideEffects
        end local 0 // com.oracle.truffle.sl.runtime.FunctionsObject this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    1     0              this  Lcom/oracle/truffle/sl/runtime/FunctionsObject;
            0    1     1  allowSideEffects  Z
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportMessage()
      com.oracle.truffle.api.CompilerDirectives$TruffleBoundary()
    MethodParameters:
                  Name  Flags
      allowSideEffects  

  public static boolean isInstance(com.oracle.truffle.api.interop.TruffleObject);
    descriptor: (Lcom/oracle/truffle/api/interop/TruffleObject;)Z
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.interop.TruffleObject obj
         0: .line 126
            aload 0 /* obj */
            instanceof com.oracle.truffle.sl.runtime.FunctionsObject
            ireturn
        end local 0 // com.oracle.truffle.api.interop.TruffleObject obj
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0   obj  Lcom/oracle/truffle/api/interop/TruffleObject;
    MethodParameters:
      Name  Flags
      obj   
}
SourceFile: "FunctionsObject.java"
NestMembers:
  com.oracle.truffle.sl.runtime.FunctionsObject$FunctionNamesObject
InnerClasses:
  public abstract TruffleBoundary = com.oracle.truffle.api.CompilerDirectives$TruffleBoundary of com.oracle.truffle.api.CompilerDirectives
  final FunctionNamesObject = com.oracle.truffle.sl.runtime.FunctionsObject$FunctionNamesObject of com.oracle.truffle.sl.runtime.FunctionsObject
    RuntimeVisibleAnnotations: 
      com.oracle.truffle.api.library.ExportLibrary(value = Lcom/oracle/truffle/api/interop/InteropLibrary;)