public class jdk.internal.org.jline.reader.impl.BufferImpl implements jdk.internal.org.jline.reader.Buffer
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: jdk.internal.org.jline.reader.impl.BufferImpl
  super_class: java.lang.Object
{
  private int cursor;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

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

  private int[] buffer;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

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

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

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 31
            aload 0 /* this */
            bipush 64
            invokespecial jdk.internal.org.jline.reader.impl.BufferImpl.<init>:(I)V
         1: .line 32
            return
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int size
         0: .line 34
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         2: .line 25
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         3: .line 35
            aload 0 /* this */
            iload 1 /* size */
            newarray 10
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
         4: .line 36
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         5: .line 37
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
         6: .line 38
            return
        end local 1 // int size
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    7     1  size  I
    MethodParameters:
      Name  Flags
      size  

  private void <init>(jdk.internal.org.jline.reader.impl.BufferImpl);
    descriptor: (Ljdk/internal/org/jline/reader/impl/BufferImpl;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // jdk.internal.org.jline.reader.impl.BufferImpl buffer
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 24
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         2: .line 25
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         3: .line 41
            aload 0 /* this */
            aload 1 /* buffer */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         4: .line 42
            aload 0 /* this */
            aload 1 /* buffer */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         5: .line 43
            aload 0 /* this */
            aload 1 /* buffer */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
         6: .line 44
            aload 0 /* this */
            aload 1 /* buffer */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         7: .line 45
            aload 0 /* this */
            aload 1 /* buffer */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
         8: .line 46
            return
        end local 1 // jdk.internal.org.jline.reader.impl.BufferImpl buffer
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    9     1  buffer  Ljdk/internal/org/jline/reader/impl/BufferImpl;
    MethodParameters:
        Name  Flags
      buffer  

  public jdk.internal.org.jline.reader.impl.BufferImpl copy();
    descriptor: ()Ljdk/internal/org/jline/reader/impl/BufferImpl;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 49
            new jdk.internal.org.jline.reader.impl.BufferImpl
            dup
            aload 0 /* this */
            invokespecial jdk.internal.org.jline.reader.impl.BufferImpl.<init>:(Ljdk/internal/org/jline/reader/impl/BufferImpl;)V
            areturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int cursor();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 53
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int length();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 57
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            isub
            isub
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public boolean currChar(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int ch
         0: .line 61
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmpne 2
         1: .line 62
            iconst_0
            ireturn
         2: .line 64
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.adjust:(I)I
            iload 1 /* ch */
            iastore
         3: .line 65
            iconst_1
            ireturn
        end local 1 // int ch
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    4     1    ch  I
    MethodParameters:
      Name  Flags
      ch    

  public int currChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 70
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmpne 2
         1: .line 71
            iconst_0
            ireturn
         2: .line 73
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int prevChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 78
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            ifgt 2
         1: .line 79
            iconst_0
            ireturn
         2: .line 81
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iconst_1
            isub
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int nextChar();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 85
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            iconst_1
            isub
            if_icmplt 2
         1: .line 86
            iconst_0
            ireturn
         2: .line 88
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iconst_1
            iadd
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int atChar(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int i
         0: .line 92
            iload 1 /* i */
            iflt 1
            iload 1 /* i */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmplt 2
         1: .line 93
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
         2: .line 95
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            iload 1 /* i */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.adjust:(I)I
            iaload
            ireturn
        end local 1 // int i
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  private int adjust(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int i
         0: .line 99
            iload 1 /* i */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            if_icmplt 1
            iload 1 /* i */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iadd
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            isub
            goto 2
      StackMap locals:
      StackMap stack:
         1: iload 1 /* i */
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int i
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    3     1     i  I
    MethodParameters:
      Name  Flags
      i     

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int c
         0: .line 109
            aload 0 /* this */
            iconst_1
            newarray 10
            dup
            iconst_0
            iload 1 /* c */
            iastore
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.write:([I)V
         1: .line 110
            return
        end local 1 // int c
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    2     1     c  I
    MethodParameters:
      Name  Flags
      c     

  public void write(int, boolean);
    descriptor: (IZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int c
        start local 2 // boolean overTyping
         0: .line 120
            iload 2 /* overTyping */
            ifeq 2
         1: .line 121
            aload 0 /* this */
            iconst_1
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.delete:(I)I
            pop
         2: .line 123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_1
            newarray 10
            dup
            iconst_0
            iload 1 /* c */
            iastore
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.write:([I)V
         3: .line 124
            return
        end local 2 // boolean overTyping
        end local 1 // int c
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    4     1           c  I
            0    4     2  overTyping  Z
    MethodParameters:
            Name  Flags
      c           
      overTyping  

  public void write(java.lang.CharSequence);
    descriptor: (Ljava/lang/CharSequence;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // java.lang.CharSequence str
         0: .line 130
            aload 1 /* str */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 131
            aload 0 /* this */
            aload 1 /* str */
            invokeinterface java.lang.CharSequence.codePoints:()Ljava/util/stream/IntStream;
            invokeinterface java.util.stream.IntStream.toArray:()[I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.write:([I)V
         2: .line 132
            return
        end local 1 // java.lang.CharSequence str
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    3     1   str  Ljava/lang/CharSequence;
    MethodParameters:
      Name  Flags
      str   

  public void write(java.lang.CharSequence, boolean);
    descriptor: (Ljava/lang/CharSequence;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=3
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // java.lang.CharSequence str
        start local 2 // boolean overTyping
         0: .line 135
            aload 1 /* str */
            invokestatic java.util.Objects.requireNonNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 136
            aload 1 /* str */
            invokeinterface java.lang.CharSequence.codePoints:()Ljava/util/stream/IntStream;
            invokeinterface java.util.stream.IntStream.toArray:()[I
            astore 3 /* ucps */
        start local 3 // int[] ucps
         2: .line 137
            iload 2 /* overTyping */
            ifeq 4
         3: .line 138
            aload 0 /* this */
            aload 3 /* ucps */
            arraylength
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.delete:(I)I
            pop
         4: .line 140
      StackMap locals: int[]
      StackMap stack:
            aload 0 /* this */
            aload 3 /* ucps */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.write:([I)V
         5: .line 141
            return
        end local 3 // int[] ucps
        end local 2 // boolean overTyping
        end local 1 // java.lang.CharSequence str
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    6     1         str  Ljava/lang/CharSequence;
            0    6     2  overTyping  Z
            2    6     3        ucps  [I
    MethodParameters:
            Name  Flags
      str         
      overTyping  

  private void write(int[]);
    descriptor: ([I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int[] ucps
         0: .line 144
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.moveGapToCursor:()V
         1: .line 145
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            aload 1 /* ucps */
            arraylength
            iadd
            istore 2 /* len */
        start local 2 // int len
         2: .line 146
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            istore 3 /* sz */
        start local 3 // int sz
         3: .line 147
            iload 3 /* sz */
            iload 2 /* len */
            if_icmpge 12
         4: .line 148
            goto 6
         5: .line 149
      StackMap locals: int int
      StackMap stack:
            iload 3 /* sz */
            iconst_2
            imul
            istore 3 /* sz */
         6: .line 148
      StackMap locals:
      StackMap stack:
            iload 3 /* sz */
            iload 2 /* len */
            if_icmplt 5
         7: .line 151
            iload 3 /* sz */
            newarray 10
            astore 4 /* nb */
        start local 4 // int[] nb
         8: .line 152
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            iconst_0
            aload 4 /* nb */
            iconst_0
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 153
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            aload 4 /* nb */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 3 /* sz */
            iadd
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            isub
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 154
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 3 /* sz */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            isub
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
        11: .line 155
            aload 0 /* this */
            aload 4 /* nb */
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
        end local 4 // int[] nb
        12: .line 157
      StackMap locals:
      StackMap stack:
            aload 1 /* ucps */
            iconst_0
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 1 /* ucps */
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        13: .line 158
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            aload 1 /* ucps */
            arraylength
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
        14: .line 159
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 1 /* ucps */
            arraylength
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
        15: .line 160
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
        16: .line 161
            return
        end local 3 // int sz
        end local 2 // int len
        end local 1 // int[] ucps
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0   17     1  ucps  [I
            2   17     2   len  I
            3   17     3    sz  I
            8   12     4    nb  [I
    MethodParameters:
      Name  Flags
      ucps  

  public boolean clear();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 164
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            ifne 2
         1: .line 165
            iconst_0
            ireturn
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         3: .line 168
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            arraylength
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
         4: .line 169
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         5: .line 170
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         6: .line 171
            iconst_1
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public java.lang.String substring(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int start
         0: .line 175
            aload 0 /* this */
            iload 1 /* start */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.substring:(II)Ljava/lang/String;
            areturn
        end local 1 // int start
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    1     1  start  I
    MethodParameters:
       Name  Flags
      start  

  public java.lang.String substring(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int start
        start local 2 // int end
         0: .line 179
            iload 1 /* start */
            iload 2 /* end */
            if_icmpge 1
            iload 1 /* start */
            iflt 1
            iload 2 /* end */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmple 2
         1: .line 180
      StackMap locals:
      StackMap stack:
            ldc ""
            areturn
         2: .line 182
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            if_icmpgt 4
         3: .line 183
            new java.lang.String
            dup
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            iload 1 /* start */
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokespecial java.lang.String.<init>:([III)V
            areturn
         4: .line 184
      StackMap locals:
      StackMap stack:
            iload 1 /* start */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            if_icmple 6
         5: .line 185
            new java.lang.String
            dup
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            isub
            iload 1 /* start */
            iadd
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokespecial java.lang.String.<init>:([III)V
            areturn
         6: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            astore 3 /* b */
        start local 3 // int[] b
         7: .line 188
            aload 3 /* b */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            aload 3 /* b */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            aload 3 /* b */
            arraylength
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         8: .line 189
            new java.lang.String
            dup
            aload 3 /* b */
            iload 1 /* start */
            iload 2 /* end */
            iload 1 /* start */
            isub
            invokespecial java.lang.String.<init>:([III)V
            areturn
        end local 3 // int[] b
        end local 2 // int end
        end local 1 // int start
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    9     1  start  I
            0    9     2    end  I
            7    9     3      b  [I
    MethodParameters:
       Name  Flags
      start  
      end    

  public java.lang.String upToCursor();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 194
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.substring:(II)Ljava/lang/String;
            areturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public boolean cursor(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int position
         0: .line 201
            iload 1 /* position */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            if_icmpne 2
         1: .line 202
            iconst_1
            ireturn
         2: .line 204
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* position */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            isub
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.move:(I)I
            ifeq 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // int position
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    4     1  position  I
    MethodParameters:
          Name  Flags
      position  

  public int move(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int num
         0: .line 214
            iload 1 /* num */
            istore 2 /* where */
        start local 2 // int where
         1: .line 216
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            ifne 3
            iload 2 /* where */
            ifgt 3
         2: .line 217
            iconst_0
            ireturn
         3: .line 220
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmpne 5
            iload 2 /* where */
            iflt 5
         4: .line 221
            iconst_0
            ireturn
         5: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 2 /* where */
            iadd
            ifge 8
         6: .line 225
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            ineg
            istore 2 /* where */
         7: .line 226
            goto 10
         8: .line 227
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 2 /* where */
            iadd
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmple 10
         9: .line 228
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            isub
            istore 2 /* where */
        10: .line 231
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 2 /* where */
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
        11: .line 232
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
        12: .line 234
            iload 2 /* where */
            ireturn
        end local 2 // int where
        end local 1 // int num
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0   13     1    num  I
            1   13     2  where  I
    MethodParameters:
      Name  Flags
      num   final

  public boolean up();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 238
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.getCursorCol:()I
            istore 1 /* col */
        start local 1 // int col
         1: .line 239
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iconst_1
            isub
            istore 2 /* pnl */
        start local 2 // int pnl
         2: .line 240
            goto 4
         3: .line 241
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* pnl */ -1
         4: .line 240
      StackMap locals:
      StackMap stack:
            iload 2 /* pnl */
            iflt 5
            aload 0 /* this */
            iload 2 /* pnl */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            bipush 10
            if_icmpne 3
         5: .line 243
      StackMap locals:
      StackMap stack:
            iload 2 /* pnl */
            ifge 7
         6: .line 244
            iconst_0
            ireturn
         7: .line 246
      StackMap locals:
      StackMap stack:
            iload 2 /* pnl */
            iconst_1
            isub
            istore 3 /* ppnl */
        start local 3 // int ppnl
         8: .line 247
            goto 10
         9: .line 248
      StackMap locals: int
      StackMap stack:
            iinc 3 /* ppnl */ -1
        10: .line 247
      StackMap locals:
      StackMap stack:
            iload 3 /* ppnl */
            iflt 11
            aload 0 /* this */
            iload 3 /* ppnl */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            bipush 10
            if_icmpne 9
        11: .line 250
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* ppnl */
            iload 1 /* col */
            iadd
            iconst_1
            iadd
            iload 2 /* pnl */
            invokestatic java.lang.Math.min:(II)I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
        12: .line 251
            iconst_1
            ireturn
        end local 3 // int ppnl
        end local 2 // int pnl
        end local 1 // int col
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            1   13     1   col  I
            2   13     2   pnl  I
            8   13     3  ppnl  I

  public boolean down();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 255
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.getCursorCol:()I
            istore 1 /* col */
        start local 1 // int col
         1: .line 256
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            istore 2 /* nnl */
        start local 2 // int nnl
         2: .line 257
            goto 4
         3: .line 258
      StackMap locals: int int
      StackMap stack:
            iinc 2 /* nnl */ 1
         4: .line 257
      StackMap locals:
      StackMap stack:
            iload 2 /* nnl */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmpge 5
            aload 0 /* this */
            iload 2 /* nnl */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            bipush 10
            if_icmpne 3
         5: .line 260
      StackMap locals:
      StackMap stack:
            iload 2 /* nnl */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmplt 7
         6: .line 261
            iconst_0
            ireturn
         7: .line 263
      StackMap locals:
      StackMap stack:
            iload 2 /* nnl */
            iconst_1
            iadd
            istore 3 /* nnnl */
        start local 3 // int nnnl
         8: .line 264
            goto 10
         9: .line 265
      StackMap locals: int
      StackMap stack:
            iinc 3 /* nnnl */ 1
        10: .line 264
      StackMap locals:
      StackMap stack:
            iload 3 /* nnnl */
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            if_icmpge 11
            aload 0 /* this */
            iload 3 /* nnnl */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            bipush 10
            if_icmpne 9
        11: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* nnl */
            iload 1 /* col */
            iadd
            iconst_1
            iadd
            iload 3 /* nnnl */
            invokestatic java.lang.Math.min:(II)I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
        12: .line 268
            iconst_1
            ireturn
        end local 3 // int nnnl
        end local 2 // int nnl
        end local 1 // int col
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   13     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            1   13     1   col  I
            2   13     2   nnl  I
            8   13     3  nnnl  I

  public boolean moveXY(int, int);
    descriptor: (II)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int dx
        start local 2 // int dy
         0: .line 272
            iconst_0
            istore 3 /* col */
        start local 3 // int col
         1: .line 273
            goto 3
         2: .line 274
      StackMap locals: int
      StackMap stack:
            iinc 3 /* col */ 1
         3: .line 273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.prevChar:()I
            bipush 10
            if_icmpeq 4
            aload 0 /* this */
            iconst_m1
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.move:(I)I
            iconst_m1
            if_icmpeq 2
         4: .line 276
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         5: .line 277
            goto 8
         6: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.up:()Z
            pop
         7: .line 279
            iinc 2 /* dy */ 1
         8: .line 277
      StackMap locals:
      StackMap stack:
            iload 2 /* dy */
            iflt 6
         9: .line 281
            goto 12
        10: .line 282
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.down:()Z
            pop
        11: .line 283
            iinc 2 /* dy */ -1
        12: .line 281
      StackMap locals:
      StackMap stack:
            iload 2 /* dy */
            ifgt 10
        13: .line 285
            iload 3 /* col */
            iload 1 /* dx */
            iadd
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            istore 3 /* col */
        14: .line 286
            iconst_0
            istore 4 /* i */
        start local 4 // int i
        15: goto 19
        16: .line 287
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_1
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.move:(I)I
            iconst_1
            if_icmpne 20
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.currChar:()I
            bipush 10
            if_icmpne 18
        17: .line 288
            goto 20
        18: .line 286
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 4 /* i */
            iload 3 /* col */
            if_icmplt 16
        end local 4 // int i
        20: .line 291
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* col */
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
        21: .line 292
            iconst_1
            ireturn
        end local 3 // int col
        end local 2 // int dy
        end local 1 // int dx
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   22     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0   22     1    dx  I
            0   22     2    dy  I
            1   22     3   col  I
           15   20     4     i  I
    MethodParameters:
      Name  Flags
      dx    
      dy    

  private int getCursorCol();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 296
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
            ifge 7
         1: .line 297
            aload 0 /* this */
            iconst_0
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         2: .line 298
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iconst_1
            isub
            istore 1 /* pnl */
        start local 1 // int pnl
         3: .line 299
            goto 5
         4: .line 300
      StackMap locals: int
      StackMap stack:
            iinc 1 /* pnl */ -1
         5: .line 299
      StackMap locals:
      StackMap stack:
            iload 1 /* pnl */
            iflt 6
            aload 0 /* this */
            iload 1 /* pnl */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.atChar:(I)I
            bipush 10
            if_icmpne 4
         6: .line 302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 1 /* pnl */
            isub
            iconst_1
            isub
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
        end local 1 // int pnl
         7: .line 304
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            3    7     1   pnl  I

  public int backspace(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int num
         0: .line 313
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 1 /* num */
            invokestatic java.lang.Math.min:(II)I
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* count */
        start local 2 // int count
         1: .line 314
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.moveGapToCursor:()V
         2: .line 315
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            iload 2 /* count */
            isub
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         3: .line 316
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            iload 2 /* count */
            isub
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         4: .line 317
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         5: .line 318
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // int num
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    6     1    num  I
            1    6     2  count  I
    MethodParameters:
      Name  Flags
      num   final

  public boolean backspace();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 327
            aload 0 /* this */
            iconst_1
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.backspace:(I)I
            iconst_1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public int delete(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // int num
         0: .line 331
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            isub
            iload 1 /* num */
            invokestatic java.lang.Math.min:(II)I
            iconst_0
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* count */
        start local 2 // int count
         1: .line 332
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.moveGapToCursor:()V
         2: .line 333
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 2 /* count */
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
         3: .line 334
            aload 0 /* this */
            iconst_m1
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         4: .line 335
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // int num
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    5     1    num  I
            1    5     2  count  I
    MethodParameters:
      Name  Flags
      num   

  public boolean delete();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 339
            aload 0 /* this */
            iconst_1
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.delete:(I)I
            iconst_1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 344
            aload 0 /* this */
            iconst_0
            aload 0 /* this */
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.length:()I
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.substring:(II)Ljava/lang/String;
            areturn
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;

  public void copyFrom(jdk.internal.org.jline.reader.Buffer);
    descriptor: (Ljdk/internal/org/jline/reader/Buffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
        start local 1 // jdk.internal.org.jline.reader.Buffer buf
         0: .line 348
            aload 1 /* buf */
            instanceof jdk.internal.org.jline.reader.impl.BufferImpl
            ifne 2
         1: .line 349
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 351
      StackMap locals:
      StackMap stack:
            aload 1 /* buf */
            checkcast jdk.internal.org.jline.reader.impl.BufferImpl
            astore 2 /* that */
        start local 2 // jdk.internal.org.jline.reader.impl.BufferImpl that
         3: .line 352
            aload 0 /* this */
            aload 2 /* that */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         4: .line 353
            aload 0 /* this */
            aload 2 /* that */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
         5: .line 354
            aload 0 /* this */
            aload 2 /* that */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            invokevirtual int[].clone:()Ljava/lang/Object;
            checkcast int[]
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
         6: .line 355
            aload 0 /* this */
            aload 2 /* that */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
         7: .line 356
            aload 0 /* this */
            aload 2 /* that */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.cursorCol:I
         8: .line 357
            return
        end local 2 // jdk.internal.org.jline.reader.impl.BufferImpl that
        end local 1 // jdk.internal.org.jline.reader.Buffer buf
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            0    9     1   buf  Ljdk/internal/org/jline/reader/Buffer;
            3    9     2  that  Ljdk/internal/org/jline/reader/impl/BufferImpl;
    MethodParameters:
      Name  Flags
      buf   

  private void moveGapToCursor();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
         0: .line 360
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            if_icmpge 6
         1: .line 361
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            isub
            istore 1 /* l */
        start local 1 // int l
         2: .line 362
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 1 /* l */
            isub
            iload 1 /* l */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         3: .line 363
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            iload 1 /* l */
            isub
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
         4: .line 364
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 1 /* l */
            isub
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
        end local 1 // int l
         5: .line 365
            goto 11
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            if_icmple 11
         7: .line 366
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.cursor:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            isub
            istore 1 /* l */
        start local 1 // int l
         8: .line 367
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.buffer:[I
            aload 0 /* this */
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            iload 1 /* l */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 368
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
            iload 1 /* l */
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g0:I
        10: .line 369
            aload 0 /* this */
            dup
            getfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
            iload 1 /* l */
            iadd
            putfield jdk.internal.org.jline.reader.impl.BufferImpl.g1:I
        end local 1 // int l
        11: .line 371
      StackMap locals:
      StackMap stack:
            return
        end local 0 // jdk.internal.org.jline.reader.impl.BufferImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Ljdk/internal/org/jline/reader/impl/BufferImpl;
            2    5     1     l  I
            8   11     1     l  I

  public jdk.internal.org.jline.reader.Buffer copy();
    descriptor: ()Ljdk/internal/org/jline/reader/Buffer;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual jdk.internal.org.jline.reader.impl.BufferImpl.copy:()Ljdk/internal/org/jline/reader/impl/BufferImpl;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
SourceFile: "BufferImpl.java"