final class com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream extends java.io.OutputStream
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream
  super_class: java.io.OutputStream
{
  private java.io.OutputStream delegate;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0002) ACC_PRIVATE

  void <init>(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
        start local 1 // java.io.OutputStream delegate
         0: .line 387
            aload 0 /* this */
            invokespecial java.io.OutputStream.<init>:()V
         1: .line 388
            aload 1 /* delegate */
            ldc "Delegate must be non null."
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            pop
         2: .line 389
            aload 0 /* this */
            aload 1 /* delegate */
            putfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
         3: .line 390
            return
        end local 1 // java.io.OutputStream delegate
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
            0    4     1  delegate  Ljava/io/OutputStream;
    MethodParameters:
          Name  Flags
      delegate  

  void setDelegate(java.io.OutputStream);
    descriptor: (Ljava/io/OutputStream;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
        start local 1 // java.io.OutputStream newDelegate
         0: .line 393
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 394
            aload 0 /* this */
            aload 1 /* newDelegate */
            putfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
         2: .line 395
            return
        end local 1 // java.io.OutputStream newDelegate
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    3     0         this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
            0    3     1  newDelegate  Ljava/io/OutputStream;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
             Name  Flags
      newDelegate  

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
        start local 1 // int b
         0: .line 399
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            iload 1 /* b */
            invokevirtual java.io.OutputStream.write:(I)V
         1: .line 400
            return
        end local 1 // int b
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
        start local 1 // byte[] b
         0: .line 404
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            aload 1 /* b */
            invokevirtual java.io.OutputStream.write:([B)V
         1: .line 405
            return
        end local 1 // byte[] b
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 409
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.OutputStream.write:([BII)V
         1: .line 410
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
            0    2     1     b  [B
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
         0: .line 414
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         1: .line 415
            return
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
    Exceptions:
      throws java.io.IOException

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
         0: .line 419
            aload 0 /* this */
            getfield com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream.delegate:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.close:()V
         1: .line 420
            return
        end local 0 // com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/tck/tests/TestContext$ProxyOutputStream;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "TestContext.java"
NestHost: com.oracle.truffle.tck.tests.TestContext
InnerClasses:
  private final ProxyOutputStream = com.oracle.truffle.tck.tests.TestContext$ProxyOutputStream of com.oracle.truffle.tck.tests.TestContext