class jdk.internal.module.ModuleInfo$DataInputWrapper implements java.io.DataInput
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: jdk.internal.module.ModuleInfo$DataInputWrapper
  super_class: java.lang.Object
{
  private final java.nio.ByteBuffer bb;
    descriptor: Ljava/nio/ByteBuffer;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
        start local 1 // java.nio.ByteBuffer bb
         0: .line 956
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 957
            aload 0 /* this */
            aload 1 /* bb */
            putfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
         2: .line 958
            return
        end local 1 // java.nio.ByteBuffer bb
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            0    3     1    bb  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      bb    

  public void readFully(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
        start local 1 // byte[] b
         0: .line 962
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual jdk.internal.module.ModuleInfo$DataInputWrapper.readFully:([BII)V
         1: .line 963
            return
        end local 1 // byte[] b
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void readFully(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 968
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.nio.ByteBuffer.get:([BII)Ljava/nio/ByteBuffer;
            pop
         1: .line 969
            goto 4
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
         2: astore 4 /* e */
        start local 4 // java.nio.BufferUnderflowException e
         3: .line 970
            new java.io.EOFException
            dup
            aload 4 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 4 // java.nio.BufferUnderflowException e
         4: .line 972
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            0    5     1     b  [B
            0    5     2   off  I
            0    5     3   len  I
            3    4     4     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int skipBytes(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
        start local 1 // int n
         0: .line 976
            iload 1 /* n */
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokestatic java.lang.Math.min:(II)I
            istore 2 /* skip */
        start local 2 // int skip
         1: .line 977
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.position:()I
            iload 2 /* skip */
            iadd
            invokevirtual java.nio.ByteBuffer.position:(I)Ljava/nio/ByteBuffer;
            pop
         2: .line 978
            iload 2 /* skip */
            ireturn
        end local 2 // int skip
        end local 1 // int n
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            0    3     1     n  I
            1    3     2  skip  I
    MethodParameters:
      Name  Flags
      n     

  public boolean readBoolean();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 984
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.get:()B
            istore 1 /* ch */
        start local 1 // int ch
         1: .line 985
            iload 1 /* ch */
            ifeq 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
         3: ireturn
        end local 1 // int ch
         4: .line 986
      StackMap locals: jdk.internal.module.ModuleInfo$DataInputWrapper
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         5: .line 987
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            1    4     1    ch  I
            5    6     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     3       4  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public byte readByte();
    descriptor: ()B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 994
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.get:()B
         1: ireturn
         2: .line 995
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 996
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public int readUnsignedByte();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1003
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.get:()B
            sipush 255
            iand
         1: ireturn
         2: .line 1004
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1005
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public short readShort();
    descriptor: ()S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1012
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getShort:()S
         1: ireturn
         2: .line 1013
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1014
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public int readUnsignedShort();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1021
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getShort:()S
            ldc 65535
            iand
         1: ireturn
         2: .line 1022
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1023
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public char readChar();
    descriptor: ()C
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1030
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getChar:()C
         1: ireturn
         2: .line 1031
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1032
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public int readInt();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1039
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getInt:()I
         1: ireturn
         2: .line 1040
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1041
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public long readLong();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1048
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getLong:()J
         1: lreturn
         2: .line 1049
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1050
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public float readFloat();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1057
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getFloat:()F
         1: freturn
         2: .line 1058
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1059
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public double readDouble();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1066
            aload 0 /* this */
            getfield jdk.internal.module.ModuleInfo$DataInputWrapper.bb:Ljava/nio/ByteBuffer;
            invokevirtual java.nio.ByteBuffer.getDouble:()D
         1: dreturn
         2: .line 1067
      StackMap locals:
      StackMap stack: java.nio.BufferUnderflowException
            astore 1 /* e */
        start local 1 // java.nio.BufferUnderflowException e
         3: .line 1068
            new java.io.EOFException
            dup
            aload 1 /* e */
            invokevirtual java.nio.BufferUnderflowException.getMessage:()Ljava/lang/String;
            invokespecial java.io.EOFException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // java.nio.BufferUnderflowException e
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
            3    4     1     e  Ljava/nio/BufferUnderflowException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.nio.BufferUnderflowException
    Exceptions:
      throws java.io.IOException

  public java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1074
            new java.lang.RuntimeException
            dup
            ldc "not implemented"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;

  public java.lang.String readUTF();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
         0: .line 1081
            aload 0 /* this */
            invokestatic java.io.DataInputStream.readUTF:(Ljava/io/DataInput;)Ljava/lang/String;
            areturn
        end local 0 // jdk.internal.module.ModuleInfo$DataInputWrapper this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/module/ModuleInfo$DataInputWrapper;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "ModuleInfo.java"
NestHost: jdk.internal.module.ModuleInfo
InnerClasses:
  private DataInputWrapper = jdk.internal.module.ModuleInfo$DataInputWrapper of jdk.internal.module.ModuleInfo