class org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry extends org.graalvm.compiler.hotspot.test.CompileTheWorld$ClassPathEntry
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry
  super_class: org.graalvm.compiler.hotspot.test.CompileTheWorld$ClassPathEntry
{
  private final java.io.File dir;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 514
            ldc Lorg/graalvm/compiler/hotspot/test/CompileTheWorld;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
        start local 1 // java.lang.String name
         0: .line 519
            aload 0 /* this */
            aload 1 /* name */
            invokespecial org.graalvm.compiler.hotspot.test.CompileTheWorld$ClassPathEntry.<init>:(Ljava/lang/String;)V
         1: .line 520
            aload 0 /* this */
            new java.io.File
            dup
            aload 1 /* name */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            putfield org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.dir:Ljava/io/File;
         2: .line 521
            getstatic org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.$assertionsDisabled:Z
            ifne 3
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.dir:Ljava/io/File;
            invokevirtual java.io.File.isDirectory:()Z
            ifne 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 522
      StackMap locals: org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry java.lang.String
      StackMap stack:
            return
        end local 1 // java.lang.String name
        end local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/graalvm/compiler/hotspot/test/CompileTheWorld$DirClassPathEntry;
            0    4     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.lang.ClassLoader createClassLoader();
    descriptor: ()Ljava/lang/ClassLoader;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
         0: .line 526
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.dir:Ljava/io/File;
            invokevirtual java.io.File.toURI:()Ljava/net/URI;
            invokevirtual java.net.URI.toURL:()Ljava/net/URL;
            astore 1 /* url */
        start local 1 // java.net.URL url
         1: .line 527
            new java.net.URLClassLoader
            dup
            iconst_1
            anewarray java.net.URL
            dup
            iconst_0
            aload 1 /* url */
            aastore
            invokespecial java.net.URLClassLoader.<init>:([Ljava/net/URL;)V
            areturn
        end local 1 // java.net.URL url
        end local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/graalvm/compiler/hotspot/test/CompileTheWorld$DirClassPathEntry;
            1    2     1   url  Ljava/net/URL;
    Exceptions:
      throws java.io.IOException

  public java.util.List<java.lang.String> getClassNames();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=1
        start local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
         0: .line 532
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* classNames */
        start local 1 // java.util.List classNames
         1: .line 533
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.dir:Ljava/io/File;
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            astore 2 /* root */
        start local 2 // java.lang.String root
         2: .line 534
            new org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry$1
            dup
            aload 0 /* this */
            aload 2 /* root */
            aload 1 /* classNames */
            invokespecial org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry$1.<init>:(Lorg/graalvm/compiler/hotspot/test/CompileTheWorld$DirClassPathEntry;Ljava/lang/String;Ljava/util/List;)V
            astore 3 /* visitor */
        start local 3 // java.nio.file.SimpleFileVisitor visitor
         3: .line 550
            aload 0 /* this */
            getfield org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry.dir:Ljava/io/File;
            invokevirtual java.io.File.toPath:()Ljava/nio/file/Path;
            aload 3 /* visitor */
            invokestatic java.nio.file.Files.walkFileTree:(Ljava/nio/file/Path;Ljava/nio/file/FileVisitor;)Ljava/nio/file/Path;
            pop
         4: .line 551
            aload 1 /* classNames */
            areturn
        end local 3 // java.nio.file.SimpleFileVisitor visitor
        end local 2 // java.lang.String root
        end local 1 // java.util.List classNames
        end local 0 // org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/graalvm/compiler/hotspot/test/CompileTheWorld$DirClassPathEntry;
            1    5     1  classNames  Ljava/util/List<Ljava/lang/String;>;
            2    5     2        root  Ljava/lang/String;
            3    5     3     visitor  Ljava/nio/file/SimpleFileVisitor<Ljava/nio/file/Path;>;
    Exceptions:
      throws java.io.IOException
    Signature: ()Ljava/util/List<Ljava/lang/String;>;
}
SourceFile: "CompileTheWorld.java"
NestHost: org.graalvm.compiler.hotspot.test.CompileTheWorld
InnerClasses:
  abstract ClassPathEntry = org.graalvm.compiler.hotspot.test.CompileTheWorld$ClassPathEntry of org.graalvm.compiler.hotspot.test.CompileTheWorld
  DirClassPathEntry = org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry of org.graalvm.compiler.hotspot.test.CompileTheWorld
  org.graalvm.compiler.hotspot.test.CompileTheWorld$DirClassPathEntry$1