public final class com.oracle.truffle.tools.chromeinspector.TypeHandler
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.tools.chromeinspector.TypeHandler
  super_class: java.lang.Object
{
  static final com.oracle.truffle.api.interop.InteropLibrary INTEROP;
    descriptor: Lcom/oracle/truffle/api/interop/InteropLibrary;
    flags: (0x0018) ACC_STATIC, ACC_FINAL

  private final com.oracle.truffle.api.instrumentation.TruffleInstrument$Env env;
    descriptor: Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicReference<com.oracle.truffle.api.instrumentation.EventBinding<com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory>> currentBinding;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lcom/oracle/truffle/api/instrumentation/EventBinding<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$TypeProfileEventFactory;>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            invokestatic com.oracle.truffle.api.interop.InteropLibrary.getFactory:()Lcom/oracle/truffle/api/library/LibraryFactory;
            invokevirtual com.oracle.truffle.api.library.LibraryFactory.getUncached:()Lcom/oracle/truffle/api/library/Library;
            checkcast com.oracle.truffle.api.interop.InteropLibrary
            putstatic com.oracle.truffle.tools.chromeinspector.TypeHandler.INTEROP:Lcom/oracle/truffle/api/interop/InteropLibrary;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(com.oracle.truffle.api.instrumentation.TruffleInstrument$Env);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
        start local 1 // com.oracle.truffle.api.instrumentation.TruffleInstrument$Env env
         0: .line 60
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            aload 1 /* env */
            putfield com.oracle.truffle.tools.chromeinspector.TypeHandler.env:Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;
         2: .line 62
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:()V
            putfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
         3: .line 63
            return
        end local 1 // com.oracle.truffle.api.instrumentation.TruffleInstrument$Env env
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;
            0    4     1   env  Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;
    MethodParameters:
      Name  Flags
      env   

  public boolean isStarted();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
         0: .line 66
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;

  public boolean start(boolean);
    descriptor: (Z)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
        start local 1 // boolean inspectInternal
         0: .line 70
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            ifnonnull 7
         1: .line 71
            invokestatic com.oracle.truffle.api.instrumentation.SourceSectionFilter.newBuilder:()Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Lcom/oracle/truffle/api/instrumentation/StandardTags$RootTag;
            aastore
            invokevirtual com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder.tagIs:([Ljava/lang/Class;)Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;
            iload 1 /* inspectInternal */
            invokevirtual com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder.includeInternal:(Z)Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter$Builder;
            invokevirtual com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder.build:()Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter;
            astore 2 /* filter */
        start local 2 // com.oracle.truffle.api.instrumentation.SourceSectionFilter filter
         2: .line 72
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.env:Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;
            invokevirtual com.oracle.truffle.api.instrumentation.TruffleInstrument$Env.getInstrumenter:()Lcom/oracle/truffle/api/instrumentation/Instrumenter;
            astore 3 /* instrumenter */
        start local 3 // com.oracle.truffle.api.instrumentation.Instrumenter instrumenter
         3: .line 73
            aload 3 /* instrumenter */
            aload 2 /* filter */
            new com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory
            dup
            aload 0 /* this */
            invokespecial com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory.<init>:(Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;)V
            invokevirtual com.oracle.truffle.api.instrumentation.Instrumenter.attachExecutionEventFactory:(Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter;Lcom/oracle/truffle/api/instrumentation/ExecutionEventNodeFactory;)Lcom/oracle/truffle/api/instrumentation/EventBinding;
            astore 4 /* binding */
        start local 4 // com.oracle.truffle.api.instrumentation.EventBinding binding
         4: .line 74
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            aconst_null
            aload 4 /* binding */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         5: .line 75
            iconst_1
            ireturn
         6: .line 77
      StackMap locals: com.oracle.truffle.api.instrumentation.SourceSectionFilter com.oracle.truffle.api.instrumentation.Instrumenter com.oracle.truffle.api.instrumentation.EventBinding
      StackMap stack:
            aload 4 /* binding */
            invokevirtual com.oracle.truffle.api.instrumentation.EventBinding.dispose:()V
        end local 4 // com.oracle.truffle.api.instrumentation.EventBinding binding
        end local 3 // com.oracle.truffle.api.instrumentation.Instrumenter instrumenter
        end local 2 // com.oracle.truffle.api.instrumentation.SourceSectionFilter filter
         7: .line 80
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // boolean inspectInternal
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    8     0             this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;
            0    8     1  inspectInternal  Z
            2    7     2           filter  Lcom/oracle/truffle/api/instrumentation/SourceSectionFilter;
            3    7     3     instrumenter  Lcom/oracle/truffle/api/instrumentation/Instrumenter;
            4    7     4          binding  Lcom/oracle/truffle/api/instrumentation/EventBinding<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$TypeProfileEventFactory;>;
    MethodParameters:
                 Name  Flags
      inspectInternal  

  public void stop();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
         0: .line 84
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.oracle.truffle.api.instrumentation.EventBinding
            astore 1 /* binding */
        start local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
         1: .line 85
            aload 1 /* binding */
            ifnull 3
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            aload 1 /* binding */
            aconst_null
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 3
         2: .line 86
            aload 1 /* binding */
            invokevirtual com.oracle.truffle.api.instrumentation.EventBinding.dispose:()V
         3: .line 88
      StackMap locals: com.oracle.truffle.api.instrumentation.EventBinding
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;
            1    4     1  binding  Lcom/oracle/truffle/api/instrumentation/EventBinding<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$TypeProfileEventFactory;>;

  public void clearData();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
         0: .line 91
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.oracle.truffle.api.instrumentation.EventBinding
            astore 1 /* binding */
        start local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
         1: .line 92
            aload 1 /* binding */
            ifnull 3
         2: .line 93
            aload 1 /* binding */
            invokevirtual com.oracle.truffle.api.instrumentation.EventBinding.getElement:()Ljava/lang/Object;
            checkcast com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory.profileMap:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         3: .line 95
      StackMap locals: com.oracle.truffle.api.instrumentation.EventBinding
      StackMap stack:
            return
        end local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;
            1    4     1  binding  Lcom/oracle/truffle/api/instrumentation/EventBinding<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$TypeProfileEventFactory;>;

  public java.util.Collection<com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile> getSectionTypeProfiles();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
         0: .line 98
            aload 0 /* this */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler.currentBinding:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.oracle.truffle.api.instrumentation.EventBinding
            astore 1 /* binding */
        start local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
         1: .line 99
            new java.util.ArrayList
            dup
            aload 1 /* binding */
            invokevirtual com.oracle.truffle.api.instrumentation.EventBinding.getElement:()Ljava/lang/Object;
            checkcast com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory.profileMap:Ljava/util/Map;
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 2 /* profiles */
        start local 2 // java.util.List profiles
         2: .line 100
            aload 2 /* profiles */
            invokedynamic compare()Ljava/util/Comparator;
              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;Ljava/lang/Object;)I
                  com/oracle/truffle/tools/chromeinspector/TypeHandler.lambda$0(Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;)I (6)
                  (Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;)I
            invokeinterface java.util.List.sort:(Ljava/util/Comparator;)V
         3: .line 101
            aload 2 /* profiles */
            areturn
        end local 2 // java.util.List profiles
        end local 1 // com.oracle.truffle.api.instrumentation.EventBinding binding
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler;
            1    4     1   binding  Lcom/oracle/truffle/api/instrumentation/EventBinding<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$TypeProfileEventFactory;>;
            2    4     2  profiles  Ljava/util/List<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;>;
    Signature: ()Ljava/util/Collection<Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;>;

  static java.lang.String getMetaObjectString(com.oracle.truffle.api.instrumentation.TruffleInstrument$Env, com.oracle.truffle.api.nodes.LanguageInfo, java.lang.Object);
    descriptor: (Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;Lcom/oracle/truffle/api/nodes/LanguageInfo;Ljava/lang/Object;)Ljava/lang/String;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // com.oracle.truffle.api.instrumentation.TruffleInstrument$Env env
        start local 1 // com.oracle.truffle.api.nodes.LanguageInfo language
        start local 2 // java.lang.Object argument
         0: .line 105
            aload 0 /* env */
            aload 1 /* language */
            aload 2 /* argument */
            invokevirtual com.oracle.truffle.api.instrumentation.TruffleInstrument$Env.getLanguageView:(Lcom/oracle/truffle/api/nodes/LanguageInfo;Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* view */
        start local 3 // java.lang.Object view
         1: .line 106
            invokestatic com.oracle.truffle.api.interop.InteropLibrary.getFactory:()Lcom/oracle/truffle/api/library/LibraryFactory;
            aload 3 /* view */
            invokevirtual com.oracle.truffle.api.library.LibraryFactory.getUncached:(Ljava/lang/Object;)Lcom/oracle/truffle/api/library/Library;
            checkcast com.oracle.truffle.api.interop.InteropLibrary
            astore 4 /* viewLib */
        start local 4 // com.oracle.truffle.api.interop.InteropLibrary viewLib
         2: .line 107
            aconst_null
            astore 5 /* retType */
        start local 5 // java.lang.String retType
         3: .line 108
            aload 4 /* viewLib */
            aload 3 /* view */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.hasMetaObject:(Ljava/lang/Object;)Z
            ifeq 9
         4: .line 110
            getstatic com.oracle.truffle.tools.chromeinspector.TypeHandler.INTEROP:Lcom/oracle/truffle/api/interop/InteropLibrary;
            getstatic com.oracle.truffle.tools.chromeinspector.TypeHandler.INTEROP:Lcom/oracle/truffle/api/interop/InteropLibrary;
            aload 4 /* viewLib */
            aload 3 /* view */
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.getMetaObject:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.getMetaQualifiedName:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual com.oracle.truffle.api.interop.InteropLibrary.asString:(Ljava/lang/Object;)Ljava/lang/String;
            astore 5 /* retType */
         5: .line 111
            goto 9
      StackMap locals: com.oracle.truffle.api.instrumentation.TruffleInstrument$Env com.oracle.truffle.api.nodes.LanguageInfo java.lang.Object java.lang.Object com.oracle.truffle.api.interop.InteropLibrary java.lang.String
      StackMap stack: com.oracle.truffle.api.interop.UnsupportedMessageException
         6: astore 6 /* e */
        start local 6 // com.oracle.truffle.api.interop.UnsupportedMessageException e
         7: .line 112
            invokestatic com.oracle.truffle.api.CompilerDirectives.transferToInterpreter:()V
         8: .line 113
            new java.lang.AssertionError
            dup
            aload 6 /* e */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 6 // com.oracle.truffle.api.interop.UnsupportedMessageException e
         9: .line 116
      StackMap locals:
      StackMap stack:
            aload 5 /* retType */
            areturn
        end local 5 // java.lang.String retType
        end local 4 // com.oracle.truffle.api.interop.InteropLibrary viewLib
        end local 3 // java.lang.Object view
        end local 2 // java.lang.Object argument
        end local 1 // com.oracle.truffle.api.nodes.LanguageInfo language
        end local 0 // com.oracle.truffle.api.instrumentation.TruffleInstrument$Env env
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0       env  Lcom/oracle/truffle/api/instrumentation/TruffleInstrument$Env;
            0   10     1  language  Lcom/oracle/truffle/api/nodes/LanguageInfo;
            0   10     2  argument  Ljava/lang/Object;
            1   10     3      view  Ljava/lang/Object;
            2   10     4   viewLib  Lcom/oracle/truffle/api/interop/InteropLibrary;
            3   10     5   retType  Ljava/lang/String;
            7    9     6         e  Lcom/oracle/truffle/api/interop/UnsupportedMessageException;
      Exception table:
        from    to  target  type
           4     5       6  Class com.oracle.truffle.api.interop.UnsupportedMessageException
    MethodParameters:
          Name  Flags
      env       
      language  final
      argument  

  private static int lambda$0(com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile, com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile);
    descriptor: (Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;)I
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile p1
        start local 1 // com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile p2
         0: .line 100
            aload 0 /* p1 */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile.sourceSection:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getCharEndIndex:()I
            aload 1 /* p2 */
            getfield com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile.sourceSection:Lcom/oracle/truffle/api/source/SourceSection;
            invokevirtual com.oracle.truffle.api.source.SourceSection.getCharEndIndex:()I
            invokestatic java.lang.Integer.compare:(II)I
            ireturn
        end local 1 // com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile p2
        end local 0 // com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile p1
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    p1  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;
            0    1     1    p2  Lcom/oracle/truffle/tools/chromeinspector/TypeHandler$SectionTypeProfile;
}
SourceFile: "TypeHandler.java"
NestMembers:
  com.oracle.truffle.tools.chromeinspector.TypeHandler$Provider  com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile  com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory  com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory$1
InnerClasses:
  public final Builder = com.oracle.truffle.api.instrumentation.SourceSectionFilter$Builder of com.oracle.truffle.api.instrumentation.SourceSectionFilter
  public final RootTag = com.oracle.truffle.api.instrumentation.StandardTags$RootTag of com.oracle.truffle.api.instrumentation.StandardTags
  public final Env = com.oracle.truffle.api.instrumentation.TruffleInstrument$Env of com.oracle.truffle.api.instrumentation.TruffleInstrument
  public abstract Provider = com.oracle.truffle.tools.chromeinspector.TypeHandler$Provider of com.oracle.truffle.tools.chromeinspector.TypeHandler
  public final SectionTypeProfile = com.oracle.truffle.tools.chromeinspector.TypeHandler$SectionTypeProfile of com.oracle.truffle.tools.chromeinspector.TypeHandler
  private final TypeProfileEventFactory = com.oracle.truffle.tools.chromeinspector.TypeHandler$TypeProfileEventFactory of com.oracle.truffle.tools.chromeinspector.TypeHandler
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles