final class org.graalvm.polyglot.io.IOHelper$IOAccessImpl extends org.graalvm.polyglot.impl.AbstractPolyglotImpl$IOAccess
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: org.graalvm.polyglot.io.IOHelper$IOAccessImpl
  super_class: org.graalvm.polyglot.impl.AbstractPolyglotImpl$IOAccess
{
  private void <init>();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
         0: .line 201
            aload 0 /* this */
            invokespecial org.graalvm.polyglot.impl.AbstractPolyglotImpl$IOAccess.<init>:()V
            return
        end local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/graalvm/polyglot/io/IOHelper$IOAccessImpl;

  public org.graalvm.polyglot.io.ProcessHandler$ProcessCommand newProcessCommand(java.util.List<java.lang.String>, java.lang.String, java.util.Map<java.lang.String, java.lang.String>, boolean, org.graalvm.polyglot.io.ProcessHandler$Redirect, org.graalvm.polyglot.io.ProcessHandler$Redirect, org.graalvm.polyglot.io.ProcessHandler$Redirect);
    descriptor: (Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZLorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;)Lorg/graalvm/polyglot/io/ProcessHandler$ProcessCommand;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=8
        start local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
        start local 1 // java.util.List cmd
        start local 2 // java.lang.String cwd
        start local 3 // java.util.Map environment
        start local 4 // boolean redirectErrorStream
        start local 5 // org.graalvm.polyglot.io.ProcessHandler$Redirect inputRedirect
        start local 6 // org.graalvm.polyglot.io.ProcessHandler$Redirect outputRedirect
        start local 7 // org.graalvm.polyglot.io.ProcessHandler$Redirect errorRedirect
         0: .line 206
            new org.graalvm.polyglot.io.ProcessHandler$ProcessCommand
            dup
            aload 1 /* cmd */
            aload 2 /* cwd */
            aload 3 /* environment */
            iload 4 /* redirectErrorStream */
            aload 5 /* inputRedirect */
            aload 6 /* outputRedirect */
            aload 7 /* errorRedirect */
            invokespecial org.graalvm.polyglot.io.ProcessHandler$ProcessCommand.<init>:(Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZLorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;)V
            areturn
        end local 7 // org.graalvm.polyglot.io.ProcessHandler$Redirect errorRedirect
        end local 6 // org.graalvm.polyglot.io.ProcessHandler$Redirect outputRedirect
        end local 5 // org.graalvm.polyglot.io.ProcessHandler$Redirect inputRedirect
        end local 4 // boolean redirectErrorStream
        end local 3 // java.util.Map environment
        end local 2 // java.lang.String cwd
        end local 1 // java.util.List cmd
        end local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0    1     0                 this  Lorg/graalvm/polyglot/io/IOHelper$IOAccessImpl;
            0    1     1                  cmd  Ljava/util/List<Ljava/lang/String;>;
            0    1     2                  cwd  Ljava/lang/String;
            0    1     3          environment  Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;
            0    1     4  redirectErrorStream  Z
            0    1     5        inputRedirect  Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;
            0    1     6       outputRedirect  Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;
            0    1     7        errorRedirect  Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;
    Signature: (Ljava/util/List<Ljava/lang/String;>;Ljava/lang/String;Ljava/util/Map<Ljava/lang/String;Ljava/lang/String;>;ZLorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;)Lorg/graalvm/polyglot/io/ProcessHandler$ProcessCommand;
    MethodParameters:
                     Name  Flags
      cmd                  
      cwd                  
      environment          
      redirectErrorStream  
      inputRedirect        
      outputRedirect       
      errorRedirect        

  public org.graalvm.polyglot.io.ProcessHandler$Redirect createRedirectToStream(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
        start local 1 // java.io.OutputStream stream
         0: .line 211
            ldc "Stream must be non null."
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 212
            new org.graalvm.polyglot.io.ProcessHandler$Redirect
            dup
            getstatic org.graalvm.polyglot.io.ProcessHandler$Redirect$Type.STREAM:Lorg/graalvm/polyglot/io/ProcessHandler$Redirect$Type;
            aload 1 /* stream */
            invokespecial org.graalvm.polyglot.io.ProcessHandler$Redirect.<init>:(Lorg/graalvm/polyglot/io/ProcessHandler$Redirect$Type;Ljava/io/OutputStream;)V
            areturn
        end local 1 // java.io.OutputStream stream
        end local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/graalvm/polyglot/io/IOHelper$IOAccessImpl;
            0    2     1  stream  Ljava/io/OutputStream;
    MethodParameters:
        Name  Flags
      stream  

  public java.io.OutputStream getOutputStream(org.graalvm.polyglot.io.ProcessHandler$Redirect);
    descriptor: (Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;)Ljava/io/OutputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
        start local 1 // org.graalvm.polyglot.io.ProcessHandler$Redirect redirect
         0: .line 217
            aload 1 /* redirect */
            invokevirtual org.graalvm.polyglot.io.ProcessHandler$Redirect.getOutputStream:()Ljava/io/OutputStream;
            areturn
        end local 1 // org.graalvm.polyglot.io.ProcessHandler$Redirect redirect
        end local 0 // org.graalvm.polyglot.io.IOHelper$IOAccessImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/graalvm/polyglot/io/IOHelper$IOAccessImpl;
            0    1     1  redirect  Lorg/graalvm/polyglot/io/ProcessHandler$Redirect;
    MethodParameters:
          Name  Flags
      redirect  
}
SourceFile: "IOHelper.java"
NestHost: org.graalvm.polyglot.io.IOHelper
InnerClasses:
  public abstract IOAccess = org.graalvm.polyglot.impl.AbstractPolyglotImpl$IOAccess of org.graalvm.polyglot.impl.AbstractPolyglotImpl
  private final IOAccessImpl = org.graalvm.polyglot.io.IOHelper$IOAccessImpl of org.graalvm.polyglot.io.IOHelper
  public final ProcessCommand = org.graalvm.polyglot.io.ProcessHandler$ProcessCommand of org.graalvm.polyglot.io.ProcessHandler
  public final Redirect = org.graalvm.polyglot.io.ProcessHandler$Redirect of org.graalvm.polyglot.io.ProcessHandler
  final Type = org.graalvm.polyglot.io.ProcessHandler$Redirect$Type of org.graalvm.polyglot.io.ProcessHandler$Redirect