public class org.h2.util.ScriptReader implements java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.util.ScriptReader
  super_class: java.lang.Object
{
  private final java.io.Reader reader;
    descriptor: Ljava/io/Reader;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private char[] buffer;
    descriptor: [C
    flags: (0x0002) ACC_PRIVATE

  private int bufferPos;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int bufferStart;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int bufferEnd;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private boolean endOfFile;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean insideRemark;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean blockRemark;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean skipRemarks;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private int remarkStart;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.io.Reader);
    descriptor: (Ljava/io/Reader;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.util.ScriptReader this
        start local 1 // java.io.Reader reader
         0: .line 71
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            iconst_m1
            putfield org.h2.util.ScriptReader.bufferStart:I
         2: .line 72
            aload 0 /* this */
            aload 1 /* reader */
            putfield org.h2.util.ScriptReader.reader:Ljava/io/Reader;
         3: .line 73
            aload 0 /* this */
            sipush 8192
            newarray 5
            putfield org.h2.util.ScriptReader.buffer:[C
         4: .line 74
            return
        end local 1 // java.io.Reader reader
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/h2/util/ScriptReader;
            0    5     1  reader  Ljava/io/Reader;
    MethodParameters:
        Name  Flags
      reader  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 82
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.reader:Ljava/io/Reader;
            invokevirtual java.io.Reader.close:()V
         1: .line 83
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 1 /* e */
        start local 1 // java.io.IOException e
         3: .line 84
            aload 1 /* e */
            aconst_null
            invokestatic org.h2.message.DbException.convertIOException:(Ljava/io/IOException;Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 1 // java.io.IOException e
         4: .line 86
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/h2/util/ScriptReader;
            3    4     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException

  public java.lang.String readStatement();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 95
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.endOfFile:Z
            ifeq 2
         1: .line 96
            aconst_null
            areturn
         2: .line 99
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.readStatementLoop:()Ljava/lang/String;
         3: areturn
         4: .line 100
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         5: .line 101
            aload 1 /* e */
            aconst_null
            invokestatic org.h2.message.DbException.convertIOException:(Ljava/io/IOException;Ljava/lang/String;)Lorg/h2/message/DbException;
            athrow
        end local 1 // java.io.IOException e
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/h2/util/ScriptReader;
            5    6     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException

  private java.lang.String readStatementLoop();
    descriptor: ()Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 106
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            putfield org.h2.util.ScriptReader.bufferStart:I
         1: .line 107
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        start local 1 // int c
         2: .line 109
      StackMap locals: int
      StackMap stack:
            iload 1 /* c */
            ifge 6
         3: .line 110
            aload 0 /* this */
            iconst_1
            putfield org.h2.util.ScriptReader.endOfFile:Z
         4: .line 111
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            iconst_1
            isub
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            if_icmpne 71
         5: .line 112
            aconst_null
            areturn
         6: .line 115
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 59
            if_icmpne 8
         7: .line 116
            goto 71
         8: .line 118
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            lookupswitch { // 5
                   34: 27
                   36: 9
                   39: 21
                   45: 58
                   47: 33
              default: 69
          }
         9: .line 120
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        10: .line 121
            iload 1 /* c */
            bipush 36
            if_icmpne 2
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            isub
            iconst_3
            if_icmplt 11
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            iconst_3
            isub
            caload
            bipush 32
            if_icmpgt 2
        11: .line 124
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        12: .line 125
            iload 1 /* c */
            ifge 14
        13: .line 126
            goto 19
        14: .line 128
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 36
            if_icmpne 11
        15: .line 129
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        16: .line 130
            iload 1 /* c */
            ifge 18
        17: .line 131
            goto 19
        18: .line 133
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 36
            if_icmpne 11
        19: .line 138
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        20: .line 140
            goto 2
        21: .line 144
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        22: .line 145
            iload 1 /* c */
            ifge 24
        23: .line 146
            goto 25
        24: .line 148
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 39
            if_icmpne 21
        25: .line 152
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        26: .line 153
            goto 2
        27: .line 156
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        28: .line 157
            iload 1 /* c */
            ifge 30
        29: .line 158
            goto 31
        30: .line 160
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 34
            if_icmpne 27
        31: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        32: .line 165
            goto 2
        33: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        34: .line 168
            iload 1 /* c */
            bipush 42
            if_icmpne 48
        35: .line 170
            aload 0 /* this */
            iconst_1
            invokevirtual org.h2.util.ScriptReader.startRemark:(Z)V
        36: .line 172
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        37: .line 173
            iload 1 /* c */
            ifge 39
        38: .line 174
            goto 46
        39: .line 176
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 42
            if_icmpne 36
        40: .line 177
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        41: .line 178
            iload 1 /* c */
            ifge 44
        42: .line 179
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.clearRemark:()V
        43: .line 180
            goto 46
        44: .line 182
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 47
            if_icmpne 36
        45: .line 183
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.endRemark:()V
        46: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        47: .line 189
            goto 2
      StackMap locals:
      StackMap stack:
        48: iload 1 /* c */
            bipush 47
            if_icmpne 2
        49: .line 191
            aload 0 /* this */
            iconst_0
            invokevirtual org.h2.util.ScriptReader.startRemark:(Z)V
        50: .line 193
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        51: .line 194
            iload 1 /* c */
            ifge 54
        52: .line 195
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.clearRemark:()V
        53: .line 196
            goto 56
        54: .line 198
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpeq 55
            iload 1 /* c */
            bipush 10
            if_icmpne 50
        55: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.endRemark:()V
        56: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        57: .line 205
            goto 2
        58: .line 208
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        59: .line 209
            iload 1 /* c */
            bipush 45
            if_icmpne 2
        60: .line 211
            aload 0 /* this */
            iconst_0
            invokevirtual org.h2.util.ScriptReader.startRemark:(Z)V
        61: .line 213
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        62: .line 214
            iload 1 /* c */
            ifge 65
        63: .line 215
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.clearRemark:()V
        64: .line 216
            goto 67
        65: .line 218
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            bipush 13
            if_icmpeq 66
            iload 1 /* c */
            bipush 10
            if_icmpne 61
        66: .line 219
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.endRemark:()V
        67: .line 223
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        68: .line 225
            goto 2
        69: .line 228
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.read:()I
            istore 1 /* c */
        70: .line 108
            goto 2
        71: .line 232
      StackMap locals:
      StackMap stack:
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            iconst_1
            isub
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            isub
            invokespecial java.lang.String.<init>:([CII)V
            areturn
        end local 1 // int c
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   72     0  this  Lorg/h2/util/ScriptReader;
            2   72     1     c  I
    Exceptions:
      throws java.io.IOException

  private void startRemark(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.h2.util.ScriptReader this
        start local 1 // boolean block
         0: .line 236
            aload 0 /* this */
            iload 1 /* block */
            putfield org.h2.util.ScriptReader.blockRemark:Z
         1: .line 237
            aload 0 /* this */
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            iconst_2
            isub
            putfield org.h2.util.ScriptReader.remarkStart:I
         2: .line 238
            aload 0 /* this */
            iconst_1
            putfield org.h2.util.ScriptReader.insideRemark:Z
         3: .line 239
            return
        end local 1 // boolean block
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/h2/util/ScriptReader;
            0    4     1  block  Z
    MethodParameters:
       Name  Flags
      block  

  private void endRemark();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 242
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.clearRemark:()V
         1: .line 243
            aload 0 /* this */
            iconst_0
            putfield org.h2.util.ScriptReader.insideRemark:Z
         2: .line 244
            return
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/util/ScriptReader;

  private void clearRemark();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 247
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.skipRemarks:Z
            ifeq 2
         1: .line 248
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.remarkStart:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            bipush 32
            invokestatic java.util.Arrays.fill:([CIIC)V
         2: .line 250
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/util/ScriptReader;

  private int read();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 253
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferEnd:I
            if_icmplt 2
         1: .line 254
            aload 0 /* this */
            invokevirtual org.h2.util.ScriptReader.readBuffer:()I
            ireturn
         2: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            dup
            getfield org.h2.util.ScriptReader.bufferPos:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.util.ScriptReader.bufferPos:I
            caload
            ireturn
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/util/ScriptReader;
    Exceptions:
      throws java.io.IOException

  private int readBuffer();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 260
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.endOfFile:Z
            ifeq 2
         1: .line 261
            iconst_m1
            ireturn
         2: .line 263
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferPos:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            isub
            istore 1 /* keep */
        start local 1 // int keep
         3: .line 264
            iload 1 /* keep */
            ifle 12
         4: .line 265
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            astore 2 /* src */
        start local 2 // char[] src
         5: .line 266
            iload 1 /* keep */
            sipush 4096
            iadd
            aload 2 /* src */
            arraylength
            if_icmple 11
         6: .line 268
            aload 2 /* src */
            arraylength
            ldc 1073741823
            if_icmplt 10
         7: .line 269
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Error in parsing script, statement size exceeds 1G, first 80 characters of statement looks like: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         8: .line 272
            new java.lang.String
            dup
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            bipush 80
            invokespecial java.lang.String.<init>:([CII)V
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         9: .line 269
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 274
      StackMap locals: int char[]
      StackMap stack:
            aload 0 /* this */
            aload 2 /* src */
            arraylength
            iconst_2
            imul
            newarray 5
            putfield org.h2.util.ScriptReader.buffer:[C
        11: .line 276
      StackMap locals:
      StackMap stack:
            aload 2 /* src */
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            iconst_0
            iload 1 /* keep */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        end local 2 // char[] src
        12: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.h2.util.ScriptReader.remarkStart:I
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.bufferStart:I
            isub
            putfield org.h2.util.ScriptReader.remarkStart:I
        13: .line 279
            aload 0 /* this */
            iconst_0
            putfield org.h2.util.ScriptReader.bufferStart:I
        14: .line 280
            aload 0 /* this */
            iload 1 /* keep */
            putfield org.h2.util.ScriptReader.bufferPos:I
        15: .line 281
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.reader:Ljava/io/Reader;
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            iload 1 /* keep */
            sipush 4096
            invokevirtual java.io.Reader.read:([CII)I
            istore 2 /* len */
        start local 2 // int len
        16: .line 282
            iload 2 /* len */
            iconst_m1
            if_icmpne 21
        17: .line 284
            aload 0 /* this */
            sipush -1024
            putfield org.h2.util.ScriptReader.bufferEnd:I
        18: .line 285
            aload 0 /* this */
            iconst_1
            putfield org.h2.util.ScriptReader.endOfFile:Z
        19: .line 288
            aload 0 /* this */
            dup
            getfield org.h2.util.ScriptReader.bufferPos:I
            iconst_1
            iadd
            putfield org.h2.util.ScriptReader.bufferPos:I
        20: .line 289
            iconst_m1
            ireturn
        21: .line 291
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* keep */
            iload 2 /* len */
            iadd
            putfield org.h2.util.ScriptReader.bufferEnd:I
        22: .line 292
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.buffer:[C
            aload 0 /* this */
            dup
            getfield org.h2.util.ScriptReader.bufferPos:I
            dup_x1
            iconst_1
            iadd
            putfield org.h2.util.ScriptReader.bufferPos:I
            caload
            ireturn
        end local 2 // int len
        end local 1 // int keep
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   23     0  this  Lorg/h2/util/ScriptReader;
            3   23     1  keep  I
            5   12     2   src  [C
           16   23     2   len  I
    Exceptions:
      throws java.io.IOException

  public boolean isInsideRemark();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 302
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.insideRemark:Z
            ireturn
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/util/ScriptReader;

  public boolean isBlockRemark();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.util.ScriptReader this
         0: .line 312
            aload 0 /* this */
            getfield org.h2.util.ScriptReader.blockRemark:Z
            ireturn
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/util/ScriptReader;

  public void setSkipRemarks(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.util.ScriptReader this
        start local 1 // boolean skipRemarks
         0: .line 321
            aload 0 /* this */
            iload 1 /* skipRemarks */
            putfield org.h2.util.ScriptReader.skipRemarks:Z
         1: .line 322
            return
        end local 1 // boolean skipRemarks
        end local 0 // org.h2.util.ScriptReader this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/h2/util/ScriptReader;
            0    2     1  skipRemarks  Z
    MethodParameters:
             Name  Flags
      skipRemarks  
}
SourceFile: "ScriptReader.java"