public class com.sun.tools.javac.file.CacheFSInfo extends com.sun.tools.javac.file.FSInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.tools.javac.file.CacheFSInfo
  super_class: com.sun.tools.javac.file.FSInfo
{
  private final java.util.Map<java.nio.file.Path, com.sun.tools.javac.file.CacheFSInfo$Entry> cache;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/nio/file/Path;Lcom/sun/tools/javac/file/CacheFSInfo$Entry;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
         0: .line 45
            aload 0 /* this */
            invokespecial com.sun.tools.javac.file.FSInfo.<init>:()V
         1: .line 114
            aload 0 /* this */
            new java.util.concurrent.ConcurrentHashMap
            dup
            invokespecial java.util.concurrent.ConcurrentHashMap.<init>:()V
            putfield com.sun.tools.javac.file.CacheFSInfo.cache:Ljava/util/Map;
         2: .line 45
            return
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;

  public static void preRegister(com.sun.tools.javac.util.Context);
    descriptor: (Lcom/sun/tools/javac/util/Context;)V
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.util.Context context
         0: .line 51
            aload 0 /* context */
            ldc Lcom/sun/tools/javac/file/FSInfo;
            invokedynamic make()Lcom/sun/tools/javac/util/Context$Factory;
              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:
                  (Lcom/sun/tools/javac/util/Context;)Ljava/lang/Object;
                  com/sun/tools/javac/file/CacheFSInfo.lambda$0(Lcom/sun/tools/javac/util/Context;)Lcom/sun/tools/javac/file/FSInfo; (6)
                  (Lcom/sun/tools/javac/util/Context;)Lcom/sun/tools/javac/file/FSInfo;
            invokevirtual com.sun.tools.javac.util.Context.put:(Ljava/lang/Class;Lcom/sun/tools/javac/util/Context$Factory;)V
         1: .line 56
            return
        end local 0 // com.sun.tools.javac.util.Context context
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0  context  Lcom/sun/tools/javac/util/Context;
    MethodParameters:
         Name  Flags
      context  

  public void clearCache();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
         0: .line 59
            aload 0 /* this */
            getfield com.sun.tools.javac.file.CacheFSInfo.cache:Ljava/util/Map;
            invokeinterface java.util.Map.clear:()V
         1: .line 60
            return
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;

  public java.nio.file.Path getCanonicalFile(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Ljava/nio/file/Path;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 64
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual com.sun.tools.javac.file.CacheFSInfo.getEntry:(Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 65
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.canonicalFile:Ljava/nio/file/Path;
            areturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    2     1  file  Ljava/nio/file/Path;
            1    2     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    MethodParameters:
      Name  Flags
      file  

  public boolean exists(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 70
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual com.sun.tools.javac.file.CacheFSInfo.getEntry:(Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 71
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.exists:Z
            ireturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    2     1  file  Ljava/nio/file/Path;
            1    2     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    MethodParameters:
      Name  Flags
      file  

  public boolean isDirectory(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 76
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual com.sun.tools.javac.file.CacheFSInfo.getEntry:(Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 77
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.isDirectory:Z
            ireturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    2     1  file  Ljava/nio/file/Path;
            1    2     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    MethodParameters:
      Name  Flags
      file  

  public boolean isFile(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 82
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual com.sun.tools.javac.file.CacheFSInfo.getEntry:(Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 83
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.isFile:Z
            ireturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    2     1  file  Ljava/nio/file/Path;
            1    2     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    MethodParameters:
      Name  Flags
      file  

  public java.util.List<java.nio.file.Path> getJarClassPath(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 91
            aload 0 /* this */
            aload 1 /* file */
            invokevirtual com.sun.tools.javac.file.CacheFSInfo.getEntry:(Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 92
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.jarClassPath:Ljava/util/List;
            ifnonnull 3
         2: .line 93
            aload 2 /* e */
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.tools.javac.file.FSInfo.getJarClassPath:(Ljava/nio/file/Path;)Ljava/util/List;
            putfield com.sun.tools.javac.file.CacheFSInfo$Entry.jarClassPath:Ljava/util/List;
         3: .line 94
      StackMap locals: com.sun.tools.javac.file.CacheFSInfo$Entry
      StackMap stack:
            aload 2 /* e */
            getfield com.sun.tools.javac.file.CacheFSInfo$Entry.jarClassPath:Ljava/util/List;
            areturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    4     1  file  Ljava/nio/file/Path;
            1    4     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    Exceptions:
      throws java.io.IOException
    Signature: (Ljava/nio/file/Path;)Ljava/util/List<Ljava/nio/file/Path;>;
    MethodParameters:
      Name  Flags
      file  

  private com.sun.tools.javac.file.CacheFSInfo$Entry getEntry(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.tools.javac.file.CacheFSInfo this
        start local 1 // java.nio.file.Path file
         0: .line 101
            aload 0 /* this */
            getfield com.sun.tools.javac.file.CacheFSInfo.cache:Ljava/util/Map;
            aload 1 /* file */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.sun.tools.javac.file.CacheFSInfo$Entry
            astore 2 /* e */
        start local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
         1: .line 102
            aload 2 /* e */
            ifnonnull 8
         2: .line 103
            new com.sun.tools.javac.file.CacheFSInfo$Entry
            dup
            invokespecial com.sun.tools.javac.file.CacheFSInfo$Entry.<init>:()V
            astore 2 /* e */
         3: .line 104
            aload 2 /* e */
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.tools.javac.file.FSInfo.getCanonicalFile:(Ljava/nio/file/Path;)Ljava/nio/file/Path;
            putfield com.sun.tools.javac.file.CacheFSInfo$Entry.canonicalFile:Ljava/nio/file/Path;
         4: .line 105
            aload 2 /* e */
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.tools.javac.file.FSInfo.exists:(Ljava/nio/file/Path;)Z
            putfield com.sun.tools.javac.file.CacheFSInfo$Entry.exists:Z
         5: .line 106
            aload 2 /* e */
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.tools.javac.file.FSInfo.isDirectory:(Ljava/nio/file/Path;)Z
            putfield com.sun.tools.javac.file.CacheFSInfo$Entry.isDirectory:Z
         6: .line 107
            aload 2 /* e */
            aload 0 /* this */
            aload 1 /* file */
            invokespecial com.sun.tools.javac.file.FSInfo.isFile:(Ljava/nio/file/Path;)Z
            putfield com.sun.tools.javac.file.CacheFSInfo$Entry.isFile:Z
         7: .line 108
            aload 0 /* this */
            getfield com.sun.tools.javac.file.CacheFSInfo.cache:Ljava/util/Map;
            aload 1 /* file */
            aload 2 /* e */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         8: .line 110
      StackMap locals: com.sun.tools.javac.file.CacheFSInfo$Entry
      StackMap stack:
            aload 2 /* e */
            areturn
        end local 2 // com.sun.tools.javac.file.CacheFSInfo$Entry e
        end local 1 // java.nio.file.Path file
        end local 0 // com.sun.tools.javac.file.CacheFSInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/sun/tools/javac/file/CacheFSInfo;
            0    9     1  file  Ljava/nio/file/Path;
            1    9     2     e  Lcom/sun/tools/javac/file/CacheFSInfo$Entry;
    MethodParameters:
      Name  Flags
      file  

  private static com.sun.tools.javac.file.FSInfo lambda$0(com.sun.tools.javac.util.Context);
    descriptor: (Lcom/sun/tools/javac/util/Context;)Lcom/sun/tools/javac/file/FSInfo;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // com.sun.tools.javac.util.Context c
         0: .line 52
            new com.sun.tools.javac.file.CacheFSInfo
            dup
            invokespecial com.sun.tools.javac.file.CacheFSInfo.<init>:()V
            astore 1 /* instance */
        start local 1 // com.sun.tools.javac.file.FSInfo instance
         1: .line 53
            aload 0 /* c */
            ldc Lcom/sun/tools/javac/file/FSInfo;
            aload 1 /* instance */
            invokevirtual com.sun.tools.javac.util.Context.put:(Ljava/lang/Class;Ljava/lang/Object;)V
         2: .line 54
            aload 1 /* instance */
            areturn
        end local 1 // com.sun.tools.javac.file.FSInfo instance
        end local 0 // com.sun.tools.javac.util.Context c
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0         c  Lcom/sun/tools/javac/util/Context;
            1    3     1  instance  Lcom/sun/tools/javac/file/FSInfo;
}
SourceFile: "CacheFSInfo.java"
NestMembers:
  com.sun.tools.javac.file.CacheFSInfo$Entry
InnerClasses:
  private Entry = com.sun.tools.javac.file.CacheFSInfo$Entry of com.sun.tools.javac.file.CacheFSInfo
  public abstract Factory = com.sun.tools.javac.util.Context$Factory of com.sun.tools.javac.util.Context
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles