public class com.oracle.truffle.api.test.polyglot.FileSystemProviderTest
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest
  super_class: java.lang.Object
{
  private java.nio.file.Path workDir;
    descriptor: Ljava/nio/file/Path;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.file.Path invalidWorkDir;
    descriptor: Ljava/nio/file/Path;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.file.Path existingAbsolute;
    descriptor: Ljava/nio/file/Path;
    flags: (0x0002) ACC_PRIVATE

  private java.nio.file.Path existingRelative;
    descriptor: Ljava/nio/file/Path;
    flags: (0x0002) ACC_PRIVATE

  private org.graalvm.polyglot.io.FileSystem fs;
    descriptor: Lorg/graalvm/polyglot/io/FileSystem;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;

  public void setUp();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 74
            aload 0 /* this */
            ldc Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createTempDirectory:(Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            putfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.invalidWorkDir:Ljava/nio/file/Path;
         1: .line 75
            aload 0 /* this */
            ldc Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createTempDirectory:(Ljava/lang/String;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            putfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
         2: .line 76
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "existing.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokevirtual java.lang.String.getBytes:(Ljava/nio/charset/Charset;)[B
            iconst_0
            anewarray java.nio.file.OpenOption
            invokestatic java.nio.file.Files.write:(Ljava/nio/file/Path;[B[Ljava/nio/file/OpenOption;)Ljava/nio/file/Path;
            putfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
         3: .line 77
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.relativize:(Ljava/nio/file/Path;)Ljava/nio/file/Path;
            putfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
         4: .line 80
            aload 0 /* this */
            invokestatic org.graalvm.polyglot.io.FileSystem.newDefaultFileSystem:()Lorg/graalvm/polyglot/io/FileSystem;
            putfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
         5: .line 81
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.setCurrentWorkingDirectory:(Ljava/nio/file/Path;)V
         6: .line 82
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Before()

  public void tearDown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 87
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            invokevirtual com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.delete:(Ljava/nio/file/Path;)V
         1: .line 88
            goto 5
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 1
         3: .line 89
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.invalidWorkDir:Ljava/nio/file/Path;
            invokevirtual com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.delete:(Ljava/nio/file/Path;)V
         4: .line 90
            aload 1
            athrow
         5: .line 89
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.invalidWorkDir:Ljava/nio/file/Path;
            invokevirtual com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.delete:(Ljava/nio/file/Path;)V
         6: .line 91
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
      Exception table:
        from    to  target  type
           0     2       2  any
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.After()

  public void testCheckAccess();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 95
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            ldc Ljava/nio/file/AccessMode;
            invokestatic java.util.EnumSet.noneOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.checkAccess:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/LinkOption;)V
         1: .line 96
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc Ljava/nio/file/AccessMode;
            invokestatic java.util.EnumSet.noneOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.checkAccess:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/LinkOption;)V
         2: .line 97
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testCopy();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 101
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "copy1.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* targetAbsolute */
        start local 1 // java.nio.file.Path targetAbsolute
         1: .line 102
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
         2: .line 103
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            new java.lang.String
            dup
            aload 1 /* targetAbsolute */
            invokestatic java.nio.file.Files.readAllBytes:(Ljava/nio/file/Path;)[B
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 104
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "copy2.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* targetAbsolute */
         4: .line 105
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
         5: .line 106
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            new java.lang.String
            dup
            aload 1 /* targetAbsolute */
            invokestatic java.nio.file.Files.readAllBytes:(Ljava/nio/file/Path;)[B
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         6: .line 107
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "copy3.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            astore 2 /* targetRelative */
        start local 2 // java.nio.file.Path targetRelative
         7: .line 108
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 2 /* targetRelative */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
         8: .line 109
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            new java.lang.String
            dup
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "copy3.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            invokestatic java.nio.file.Files.readAllBytes:(Ljava/nio/file/Path;)[B
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            invokespecial java.lang.String.<init>:([BLjava/nio/charset/Charset;)V
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         9: .line 110
            return
        end local 2 // java.nio.file.Path targetRelative
        end local 1 // java.nio.file.Path targetAbsolute
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   10     0            this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1   10     1  targetAbsolute  Ljava/nio/file/Path;
            7   10     2  targetRelative  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testCreateDirectory();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 114
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "createDir1.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* targetAbsolute */
        start local 1 // java.nio.file.Path targetAbsolute
         1: .line 115
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokeinterface org.graalvm.polyglot.io.FileSystem.createDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V
         2: .line 116
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         3: .line 117
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "createDir2.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            astore 2 /* targetRelative */
        start local 2 // java.nio.file.Path targetRelative
         4: .line 118
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 2 /* targetRelative */
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokeinterface org.graalvm.polyglot.io.FileSystem.createDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V
         5: .line 119
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "createDir2.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         6: .line 120
            return
        end local 2 // java.nio.file.Path targetRelative
        end local 1 // java.nio.file.Path targetAbsolute
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    7     0            this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1    7     1  targetAbsolute  Ljava/nio/file/Path;
            4    7     2  targetRelative  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testDelete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 124
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "delete.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* targetAbsolute */
        start local 1 // java.nio.file.Path targetAbsolute
         1: .line 125
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createFile:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            pop
         2: .line 126
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* targetAbsolute */
            invokeinterface org.graalvm.polyglot.io.FileSystem.delete:(Ljava/nio/file/Path;)V
         3: .line 127
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         4: .line 128
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createFile:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            pop
         5: .line 129
            aload 1 /* targetAbsolute */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            astore 2 /* targetRelative */
        start local 2 // java.nio.file.Path targetRelative
         6: .line 130
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 2 /* targetRelative */
            invokeinterface org.graalvm.polyglot.io.FileSystem.delete:(Ljava/nio/file/Path;)V
         7: .line 131
            aload 1 /* targetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         8: .line 132
            return
        end local 2 // java.nio.file.Path targetRelative
        end local 1 // java.nio.file.Path targetAbsolute
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1    9     1  targetAbsolute  Ljava/nio/file/Path;
            6    9     2  targetRelative  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testMove();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 136
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "move_src.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* moveSourceAbsolute */
        start local 1 // java.nio.file.Path moveSourceAbsolute
         1: .line 137
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokestatic java.nio.file.Files.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)Ljava/nio/file/Path;
            pop
         2: .line 138
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "move_tgt.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 2 /* moveTargetAbsolute */
        start local 2 // java.nio.file.Path moveTargetAbsolute
         3: .line 139
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* moveSourceAbsolute */
            aload 2 /* moveTargetAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.move:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
         4: .line 140
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
         5: .line 141
            aload 2 /* moveTargetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         6: .line 143
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokestatic java.nio.file.Files.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)Ljava/nio/file/Path;
            pop
         7: .line 144
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "move_tgt2.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 2 /* moveTargetAbsolute */
         8: .line 145
            aload 2 /* moveTargetAbsolute */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            astore 3 /* moveTargetRelative */
        start local 3 // java.nio.file.Path moveTargetRelative
         9: .line 146
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* moveSourceAbsolute */
            aload 3 /* moveTargetRelative */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.move:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
        10: .line 147
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
        11: .line 148
            aload 2 /* moveTargetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
        12: .line 150
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokestatic java.nio.file.Files.copy:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)Ljava/nio/file/Path;
            pop
        13: .line 151
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "move_tgt3.txt"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 2 /* moveTargetAbsolute */
        14: .line 152
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* moveSourceAbsolute */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            aload 2 /* moveTargetAbsolute */
            iconst_0
            anewarray java.nio.file.CopyOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.move:(Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V
        15: .line 153
            aload 1 /* moveSourceAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertFalse:(Z)V
        16: .line 154
            aload 2 /* moveTargetAbsolute */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.exists:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
        17: .line 155
            return
        end local 3 // java.nio.file.Path moveTargetRelative
        end local 2 // java.nio.file.Path moveTargetAbsolute
        end local 1 // java.nio.file.Path moveSourceAbsolute
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   18     0                this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1   18     1  moveSourceAbsolute  Ljava/nio/file/Path;
            3   18     2  moveTargetAbsolute  Ljava/nio/file/Path;
            9   18     3  moveTargetRelative  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNewByteChannel();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 159
            aconst_null
            astore 1
            aconst_null
            astore 2
         1: aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            getstatic java.nio.file.StandardOpenOption.READ:Ljava/nio/file/StandardOpenOption;
            invokestatic java.util.EnumSet.of:(Ljava/lang/Enum;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokeinterface org.graalvm.polyglot.io.FileSystem.newByteChannel:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;
            astore 3 /* ch */
        start local 3 // java.nio.channels.SeekableByteChannel ch
         2: .line 160
            sipush 1024
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 4 /* buffer */
        start local 4 // java.nio.ByteBuffer buffer
         3: .line 161
            aload 3 /* ch */
            aload 4 /* buffer */
            invokeinterface java.nio.channels.SeekableByteChannel.read:(Ljava/nio/ByteBuffer;)I
            pop
         4: .line 162
            aload 4 /* buffer */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/ByteBuffer;
            pop
         5: .line 163
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            aload 4 /* buffer */
            invokevirtual java.nio.charset.Charset.decode:(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.toString:()Ljava/lang/String;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
        end local 4 // java.nio.ByteBuffer buffer
         6: .line 164
            aload 3 /* ch */
            ifnull 12
            aload 3 /* ch */
            invokeinterface java.nio.channels.SeekableByteChannel.close:()V
            goto 12
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.lang.Throwable java.lang.Throwable java.nio.channels.SeekableByteChannel
      StackMap stack: java.lang.Throwable
         7: astore 1
            aload 3 /* ch */
            ifnull 8
            aload 3 /* ch */
            invokeinterface java.nio.channels.SeekableByteChannel.close:()V
        end local 3 // java.nio.channels.SeekableByteChannel ch
      StackMap locals:
      StackMap stack:
         8: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
         9: astore 2
            aload 1
            ifnonnull 10
            aload 2
            astore 1
            goto 11
      StackMap locals:
      StackMap stack:
        10: aload 1
            aload 2
            if_acmpeq 11
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        11: aload 1
            athrow
        12: .line 165
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 1
            aconst_null
            astore 2
        13: aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            getstatic java.nio.file.StandardOpenOption.READ:Ljava/nio/file/StandardOpenOption;
            invokestatic java.util.EnumSet.of:(Ljava/lang/Enum;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokeinterface org.graalvm.polyglot.io.FileSystem.newByteChannel:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel;
            astore 3 /* ch */
        start local 3 // java.nio.channels.SeekableByteChannel ch
        14: .line 166
            sipush 1024
            invokestatic java.nio.ByteBuffer.allocate:(I)Ljava/nio/ByteBuffer;
            astore 4 /* buffer */
        start local 4 // java.nio.ByteBuffer buffer
        15: .line 167
            aload 3 /* ch */
            aload 4 /* buffer */
            invokeinterface java.nio.channels.SeekableByteChannel.read:(Ljava/nio/ByteBuffer;)I
            pop
        16: .line 168
            aload 4 /* buffer */
            invokevirtual java.nio.ByteBuffer.flip:()Ljava/nio/ByteBuffer;
            pop
        17: .line 169
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getSimpleName:()Ljava/lang/String;
            getstatic java.nio.charset.StandardCharsets.UTF_8:Ljava/nio/charset/Charset;
            aload 4 /* buffer */
            invokevirtual java.nio.charset.Charset.decode:(Ljava/nio/ByteBuffer;)Ljava/nio/CharBuffer;
            invokevirtual java.nio.CharBuffer.toString:()Ljava/lang/String;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
        end local 4 // java.nio.ByteBuffer buffer
        18: .line 170
            aload 3 /* ch */
            ifnull 24
            aload 3 /* ch */
            invokeinterface java.nio.channels.SeekableByteChannel.close:()V
            goto 24
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.lang.Throwable java.lang.Throwable java.nio.channels.SeekableByteChannel
      StackMap stack: java.lang.Throwable
        19: astore 1
            aload 3 /* ch */
            ifnull 20
            aload 3 /* ch */
            invokeinterface java.nio.channels.SeekableByteChannel.close:()V
        end local 3 // java.nio.channels.SeekableByteChannel ch
      StackMap locals:
      StackMap stack:
        20: aload 1
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: astore 2
            aload 1
            ifnonnull 22
            aload 2
            astore 1
            goto 23
      StackMap locals:
      StackMap stack:
        22: aload 1
            aload 2
            if_acmpeq 23
            aload 1
            aload 2
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        23: aload 1
            athrow
        24: .line 171
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   25     0    this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            2    8     3      ch  Ljava/nio/channels/SeekableByteChannel;
            3    6     4  buffer  Ljava/nio/ByteBuffer;
           14   20     3      ch  Ljava/nio/channels/SeekableByteChannel;
           15   18     4  buffer  Ljava/nio/ByteBuffer;
      Exception table:
        from    to  target  type
           2     6       7  any
           1     9       9  any
          14    18      19  any
          13    21      21  any
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testNewDirectoryStream();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 175
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            ldc "newdir"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            astore 1 /* dirAbsolute */
        start local 1 // java.nio.file.Path dirAbsolute
         1: .line 176
            aload 1 /* dirAbsolute */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            astore 2 /* dirRelative */
        start local 2 // java.nio.file.Path dirRelative
         2: .line 177
            aload 1 /* dirAbsolute */
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            pop
         3: .line 178
            aload 1 /* dirAbsolute */
            ldc "test"
            invokeinterface java.nio.file.Path.resolve:(Ljava/lang/String;)Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.attribute.FileAttribute
            invokestatic java.nio.file.Files.createFile:(Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/file/Path;
            pop
         4: .line 179
            aconst_null
            astore 3
            aconst_null
            astore 4
         5: aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 1 /* dirAbsolute */
            invokedynamic accept()Ljava/nio/file/DirectoryStream$Filter;
              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/api/test/polyglot/FileSystemProviderTest.lambda$0(Ljava/nio/file/Path;)Z (6)
                  (Ljava/nio/file/Path;)Z
            invokeinterface org.graalvm.polyglot.io.FileSystem.newDirectoryStream:(Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream;
            astore 5 /* dirents */
        start local 5 // java.nio.file.DirectoryStream dirents
         6: .line 180
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.spliterator:()Ljava/util/Spliterator;
            iconst_0
            invokestatic java.util.stream.StreamSupport.stream:(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;
            invokedynamic apply()Ljava/util/function/Function;
              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;
                  com/oracle/truffle/api/test/polyglot/FileSystemProviderTest.lambda$1(Ljava/nio/file/Path;)Ljava/lang/String; (6)
                  (Ljava/nio/file/Path;)Ljava/lang/String;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            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/api/test/polyglot/FileSystemProviderTest.lambda$2(Ljava/lang/String;)Z (6)
                  (Ljava/lang/String;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
            invokeinterface java.util.stream.Stream.findAny:()Ljava/util/Optional;
            astore 6 /* res */
        start local 6 // java.util.Optional res
         7: .line 181
            aload 6 /* res */
            invokevirtual java.util.Optional.isPresent:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
        end local 6 // java.util.Optional res
         8: .line 182
            aload 5 /* dirents */
            ifnull 14
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.close:()V
            goto 14
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.nio.file.Path java.nio.file.Path java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream
      StackMap stack: java.lang.Throwable
         9: astore 3
            aload 5 /* dirents */
            ifnull 10
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.close:()V
        end local 5 // java.nio.file.DirectoryStream dirents
      StackMap locals:
      StackMap stack:
        10: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        11: astore 4
            aload 3
            ifnonnull 12
            aload 4
            astore 3
            goto 13
      StackMap locals:
      StackMap stack:
        12: aload 3
            aload 4
            if_acmpeq 13
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        13: aload 3
            athrow
        14: .line 183
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3
            aconst_null
            astore 4
        15: aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 2 /* dirRelative */
            invokedynamic accept()Ljava/nio/file/DirectoryStream$Filter;
              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/api/test/polyglot/FileSystemProviderTest.lambda$3(Ljava/nio/file/Path;)Z (6)
                  (Ljava/nio/file/Path;)Z
            invokeinterface org.graalvm.polyglot.io.FileSystem.newDirectoryStream:(Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream;
            astore 5 /* dirents */
        start local 5 // java.nio.file.DirectoryStream dirents
        16: .line 184
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.spliterator:()Ljava/util/Spliterator;
            iconst_0
            invokestatic java.util.stream.StreamSupport.stream:(Ljava/util/Spliterator;Z)Ljava/util/stream/Stream;
            invokedynamic apply()Ljava/util/function/Function;
              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;
                  com/oracle/truffle/api/test/polyglot/FileSystemProviderTest.lambda$4(Ljava/nio/file/Path;)Ljava/lang/String; (6)
                  (Ljava/nio/file/Path;)Ljava/lang/String;
            invokeinterface java.util.stream.Stream.map:(Ljava/util/function/Function;)Ljava/util/stream/Stream;
            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/api/test/polyglot/FileSystemProviderTest.lambda$5(Ljava/lang/String;)Z (6)
                  (Ljava/lang/String;)Z
            invokeinterface java.util.stream.Stream.filter:(Ljava/util/function/Predicate;)Ljava/util/stream/Stream;
            invokeinterface java.util.stream.Stream.findAny:()Ljava/util/Optional;
            astore 6 /* res */
        start local 6 // java.util.Optional res
        17: .line 185
            aload 6 /* res */
            invokevirtual java.util.Optional.isPresent:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
        end local 6 // java.util.Optional res
        18: .line 186
            aload 5 /* dirents */
            ifnull 24
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.close:()V
            goto 24
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.nio.file.Path java.nio.file.Path java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream
      StackMap stack: java.lang.Throwable
        19: astore 3
            aload 5 /* dirents */
            ifnull 20
            aload 5 /* dirents */
            invokeinterface java.nio.file.DirectoryStream.close:()V
        end local 5 // java.nio.file.DirectoryStream dirents
      StackMap locals:
      StackMap stack:
        20: aload 3
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        21: astore 4
            aload 3
            ifnonnull 22
            aload 4
            astore 3
            goto 23
      StackMap locals:
      StackMap stack:
        22: aload 3
            aload 4
            if_acmpeq 23
            aload 3
            aload 4
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        23: aload 3
            athrow
        24: .line 187
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.nio.file.Path dirRelative
        end local 1 // java.nio.file.Path dirAbsolute
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   25     0         this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1   25     1  dirAbsolute  Ljava/nio/file/Path;
            2   25     2  dirRelative  Ljava/nio/file/Path;
            6   10     5      dirents  Ljava/nio/file/DirectoryStream<Ljava/nio/file/Path;>;
            7    8     6          res  Ljava/util/Optional<*>;
           16   20     5      dirents  Ljava/nio/file/DirectoryStream<Ljava/nio/file/Path;>;
           17   18     6          res  Ljava/util/Optional<*>;
      Exception table:
        from    to  target  type
           6     8       9  any
           5    11      11  any
          16    18      19  any
          15    21      21  any
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testReadAttributes();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 191
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            ldc "basic:isRegularFile"
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.readAttributes:(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map;
            ldc "isRegularFile"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         1: .line 192
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc "basic:isRegularFile"
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.readAttributes:(Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map;
            ldc "isRegularFile"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            invokevirtual java.lang.Boolean.booleanValue:()Z
            invokestatic org.junit.Assert.assertTrue:(Z)V
         2: .line 193
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testSetAttribute();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 197
            invokestatic java.lang.System.currentTimeMillis:()J
            invokestatic java.nio.file.attribute.FileTime.fromMillis:(J)Ljava/nio/file/attribute/FileTime;
            astore 1 /* ft */
        start local 1 // java.nio.file.attribute.FileTime ft
         1: .line 198
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            ldc "basic:lastModifiedTime"
            aload 1 /* ft */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.setAttribute:(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V
         2: .line 199
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc "basic:lastModifiedTime"
            aload 1 /* ft */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.setAttribute:(Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V
         3: .line 200
            return
        end local 1 // java.nio.file.attribute.FileTime ft
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            1    4     1    ft  Ljava/nio/file/attribute/FileTime;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testToAbsolutePath();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 204
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.toAbsolutePath:(Ljava/nio/file/Path;)Ljava/nio/file/Path;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 205
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.toAbsolutePath:(Ljava/nio/file/Path;)Ljava/nio/file/Path;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 206
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testToRealPath();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 210
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface java.nio.file.Path.toRealPath:([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.toRealPath:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 211
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingAbsolute:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface java.nio.file.Path.toRealPath:([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.toRealPath:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Ljava/nio/file/Path;
            invokestatic org.junit.Assert.assertEquals:(Ljava/lang/Object;Ljava/lang/Object;)V
         2: .line 212
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  public void testSetCurrentWorkingDirectory();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
         0: .line 216
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc Ljava/nio/file/AccessMode;
            invokestatic java.util.EnumSet.noneOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.checkAccess:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/LinkOption;)V
         1: .line 218
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.invalidWorkDir:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.setCurrentWorkingDirectory:(Ljava/nio/file/Path;)V
         2: .line 220
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc Ljava/nio/file/AccessMode;
            invokestatic java.util.EnumSet.noneOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.checkAccess:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/LinkOption;)V
         3: .line 221
            ldc "Should not reach here, NoSuchFileException expected."
            invokestatic org.junit.Assert.fail:(Ljava/lang/String;)V
         4: .line 222
            goto 10
      StackMap locals:
      StackMap stack: java.nio.file.NoSuchFileException
         5: pop
         6: .line 225
            goto 10
      StackMap locals:
      StackMap stack: java.lang.Throwable
         7: astore 1
         8: .line 226
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.setCurrentWorkingDirectory:(Ljava/nio/file/Path;)V
         9: .line 227
            aload 1
            athrow
        10: .line 226
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.workDir:Ljava/nio/file/Path;
            invokeinterface org.graalvm.polyglot.io.FileSystem.setCurrentWorkingDirectory:(Ljava/nio/file/Path;)V
        11: .line 228
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.fs:Lorg/graalvm/polyglot/io/FileSystem;
            aload 0 /* this */
            getfield com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.existingRelative:Ljava/nio/file/Path;
            ldc Ljava/nio/file/AccessMode;
            invokestatic java.util.EnumSet.noneOf:(Ljava/lang/Class;)Ljava/util/EnumSet;
            iconst_0
            anewarray java.nio.file.LinkOption
            invokeinterface org.graalvm.polyglot.io.FileSystem.checkAccess:(Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/LinkOption;)V
        12: .line 229
            return
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
      Exception table:
        from    to  target  type
           2     4       5  Class java.nio.file.NoSuchFileException
           1     7       7  any
    Exceptions:
      throws java.io.IOException
    RuntimeVisibleAnnotations: 
      org.junit.Test()

  private void delete(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
        start local 1 // java.nio.file.Path path
         0: .line 232
            aload 1 /* path */
            iconst_0
            anewarray java.nio.file.LinkOption
            invokestatic java.nio.file.Files.isDirectory:(Ljava/nio/file/Path;[Ljava/nio/file/LinkOption;)Z
            ifeq 13
         1: .line 233
            aconst_null
            astore 2
            aconst_null
            astore 3
         2: aload 1 /* path */
            invokestatic java.nio.file.Files.newDirectoryStream:(Ljava/nio/file/Path;)Ljava/nio/file/DirectoryStream;
            astore 4 /* childen */
        start local 4 // java.nio.file.DirectoryStream childen
         3: .line 234
            aload 4 /* childen */
            invokeinterface java.nio.file.DirectoryStream.iterator:()Ljava/util/Iterator;
            astore 6
            goto 6
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.nio.file.Path java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.nio.file.Path
            astore 5 /* child */
        start local 5 // java.nio.file.Path child
         5: .line 235
            aload 0 /* this */
            aload 5 /* child */
            invokevirtual com.oracle.truffle.api.test.polyglot.FileSystemProviderTest.delete:(Ljava/nio/file/Path;)V
        end local 5 // java.nio.file.Path child
         6: .line 234
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 237
            aload 4 /* childen */
            ifnull 13
            aload 4 /* childen */
            invokeinterface java.nio.file.DirectoryStream.close:()V
            goto 13
      StackMap locals: com.oracle.truffle.api.test.polyglot.FileSystemProviderTest java.nio.file.Path java.lang.Throwable java.lang.Throwable java.nio.file.DirectoryStream
      StackMap stack: java.lang.Throwable
         8: astore 2
            aload 4 /* childen */
            ifnull 9
            aload 4 /* childen */
            invokeinterface java.nio.file.DirectoryStream.close:()V
        end local 4 // java.nio.file.DirectoryStream childen
      StackMap locals:
      StackMap stack:
         9: aload 2
            athrow
      StackMap locals:
      StackMap stack: java.lang.Throwable
        10: astore 3
            aload 2
            ifnonnull 11
            aload 3
            astore 2
            goto 12
      StackMap locals:
      StackMap stack:
        11: aload 2
            aload 3
            if_acmpeq 12
            aload 2
            aload 3
            invokevirtual java.lang.Throwable.addSuppressed:(Ljava/lang/Throwable;)V
      StackMap locals:
      StackMap stack:
        12: aload 2
            athrow
        13: .line 239
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            invokestatic java.nio.file.Files.deleteIfExists:(Ljava/nio/file/Path;)Z
            pop
        14: .line 240
            return
        end local 1 // java.nio.file.Path path
        end local 0 // com.oracle.truffle.api.test.polyglot.FileSystemProviderTest this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   15     0     this  Lcom/oracle/truffle/api/test/polyglot/FileSystemProviderTest;
            0   15     1     path  Ljava/nio/file/Path;
            3    9     4  childen  Ljava/nio/file/DirectoryStream<Ljava/nio/file/Path;>;
            5    6     5    child  Ljava/nio/file/Path;
      Exception table:
        from    to  target  type
           3     7       8  any
           2    10      10  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      path  

  static org.graalvm.polyglot.io.FileSystem newFullIOFileSystem(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Lorg/graalvm/polyglot/io/FileSystem;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // java.nio.file.Path workDir
         0: .line 244
            ldc "com.oracle.truffle.polyglot.FileSystems"
            invokestatic java.lang.Class.forName:(Ljava/lang/String;)Ljava/lang/Class;
            astore 1 /* clz */
        start local 1 // java.lang.Class clz
         1: .line 245
            aload 1 /* clz */
            ldc "newDefaultFileSystem"
            iconst_1
            anewarray java.lang.Class
            dup
            iconst_0
            ldc Ljava/nio/file/Path;
            aastore
            invokevirtual java.lang.Class.getDeclaredMethod:(Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/reflect/Method;
            astore 2 /* m */
        start local 2 // java.lang.reflect.Method m
         2: .line 246
            aload 2 /* m */
            iconst_1
            invokevirtual java.lang.reflect.Method.setAccessible:(Z)V
         3: .line 247
            aload 2 /* m */
            aconst_null
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* workDir */
            aastore
            invokevirtual java.lang.reflect.Method.invoke:(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.graalvm.polyglot.io.FileSystem
         4: areturn
        end local 2 // java.lang.reflect.Method m
        end local 1 // java.lang.Class clz
         5: .line 248
      StackMap locals:
      StackMap stack: java.lang.ReflectiveOperationException
            astore 1 /* e */
        start local 1 // java.lang.ReflectiveOperationException e
         6: .line 249
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.lang.ReflectiveOperationException e
        end local 0 // java.nio.file.Path workDir
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0  workDir  Ljava/nio/file/Path;
            1    5     1      clz  Ljava/lang/Class<*>;
            2    5     2        m  Ljava/lang/reflect/Method;
            6    7     1        e  Ljava/lang/ReflectiveOperationException;
      Exception table:
        from    to  target  type
           0     4       5  Class java.lang.ReflectiveOperationException
    MethodParameters:
         Name  Flags
      workDir  final

  private static boolean lambda$0(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path p
         0: .line 179
            iconst_1
            ireturn
        end local 0 // java.nio.file.Path p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     p  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException

  private static java.lang.String lambda$1(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Ljava/lang/String;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path p
         0: .line 180
            aload 0 /* p */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            areturn
        end local 0 // java.nio.file.Path p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     p  Ljava/nio/file/Path;

  private static boolean lambda$2(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String n
         0: .line 180
            ldc "test"
            aload 0 /* n */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // java.lang.String n
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     n  Ljava/lang/String;

  private static boolean lambda$3(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path p
         0: .line 183
            iconst_1
            ireturn
        end local 0 // java.nio.file.Path p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     p  Ljava/nio/file/Path;
    Exceptions:
      throws java.io.IOException

  private static java.lang.String lambda$4(java.nio.file.Path);
    descriptor: (Ljava/nio/file/Path;)Ljava/lang/String;
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.nio.file.Path p
         0: .line 184
            aload 0 /* p */
            invokeinterface java.nio.file.Path.getFileName:()Ljava/nio/file/Path;
            invokeinterface java.nio.file.Path.toString:()Ljava/lang/String;
            areturn
        end local 0 // java.nio.file.Path p
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     p  Ljava/nio/file/Path;

  private static boolean lambda$5(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.String n
         0: .line 184
            ldc "test"
            aload 0 /* n */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 0 // java.lang.String n
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     n  Ljava/lang/String;
}
SourceFile: "FileSystemProviderTest.java"
InnerClasses:
  public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
  public abstract Filter = java.nio.file.DirectoryStream$Filter of java.nio.file.DirectoryStream