public abstract class org.eclipse.jface.text.AbstractLineTracker implements org.eclipse.jface.text.ILineTracker, org.eclipse.jface.text.ILineTrackerExtension
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.jface.text.AbstractLineTracker
  super_class: java.lang.Object
{
  private static final boolean DEBUG;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private org.eclipse.jface.text.DocumentRewriteSession fActiveRewriteSession;
    descriptor: Lorg/eclipse/jface/text/DocumentRewriteSession;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<org.eclipse.jface.text.AbstractLineTracker$Request> fPendingRequests;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/eclipse/jface/text/AbstractLineTracker$Request;>;

  private org.eclipse.jface.text.ILineTracker fDelegate;
    descriptor: Lorg/eclipse/jface/text/ILineTracker;
    flags: (0x0002) ACC_PRIVATE

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

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 101
            aload 0 /* this */
            new org.eclipse.jface.text.AbstractLineTracker$1
            dup
            aload 0 /* this */
            invokespecial org.eclipse.jface.text.AbstractLineTracker$1.<init>:(Lorg/eclipse/jface/text/AbstractLineTracker;)V
            putfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
         2: .line 115
            aload 0 /* this */
            iconst_1
            putfield org.eclipse.jface.text.AbstractLineTracker.fNeedsConversion:Z
         3: .line 121
            return
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;

  public int computeNumberOfLines(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // java.lang.String text
         0: .line 125
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            aload 1 /* text */
            invokeinterface org.eclipse.jface.text.ILineTracker.computeNumberOfLines:(Ljava/lang/String;)I
            ireturn
        end local 1 // java.lang.String text
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    1     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public java.lang.String getLineDelimiter(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int line
         0: .line 130
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 131
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* line */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineDelimiter:(I)Ljava/lang/String;
            areturn
        end local 1 // int line
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  line  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
      Name  Flags
      line  

  public org.eclipse.jface.text.IRegion getLineInformation(int);
    descriptor: (I)Lorg/eclipse/jface/text/IRegion;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int line
         0: .line 136
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 137
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* line */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineInformation:(I)Lorg/eclipse/jface/text/IRegion;
            areturn
        end local 1 // int line
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  line  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
      Name  Flags
      line  

  public org.eclipse.jface.text.IRegion getLineInformationOfOffset(int);
    descriptor: (I)Lorg/eclipse/jface/text/IRegion;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int offset
         0: .line 142
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 143
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* offset */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineInformationOfOffset:(I)Lorg/eclipse/jface/text/IRegion;
            areturn
        end local 1 // int offset
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  offset  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
        Name  Flags
      offset  

  public int getLineLength(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int line
         0: .line 148
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 149
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* line */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineLength:(I)I
            ireturn
        end local 1 // int line
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  line  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
      Name  Flags
      line  

  public int getLineNumberOfOffset(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int offset
         0: .line 154
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 155
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* offset */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineNumberOfOffset:(I)I
            ireturn
        end local 1 // int offset
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  offset  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
        Name  Flags
      offset  

  public int getLineOffset(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int line
         0: .line 160
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 161
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* line */
            invokeinterface org.eclipse.jface.text.ILineTracker.getLineOffset:(I)I
            ireturn
        end local 1 // int line
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  line  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
      Name  Flags
      line  

  public int getNumberOfLines();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 167
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 168
            goto 3
      StackMap locals:
      StackMap stack: org.eclipse.jface.text.BadLocationException
         2: pop
         3: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            invokeinterface org.eclipse.jface.text.ILineTracker.getNumberOfLines:()I
            ireturn
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
      Exception table:
        from    to  target  type
           0     1       2  Class org.eclipse.jface.text.BadLocationException

  public int getNumberOfLines(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int offset
        start local 2 // int length
         0: .line 176
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkRewriteSession:()V
         1: .line 177
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* offset */
            iload 2 /* length */
            invokeinterface org.eclipse.jface.text.ILineTracker.getNumberOfLines:(II)I
            ireturn
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    2     1  offset  I
            0    2     2  length  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
        Name  Flags
      offset  
      length  

  public void set(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // java.lang.String text
         0: .line 182
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.hasActiveRewriteSession:()Z
            ifeq 4
         1: .line 183
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         2: .line 184
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
            new org.eclipse.jface.text.AbstractLineTracker$Request
            dup
            aload 1 /* text */
            invokespecial org.eclipse.jface.text.AbstractLineTracker$Request.<init>:(Ljava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 185
            return
         4: .line 188
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            aload 1 /* text */
            invokeinterface org.eclipse.jface.text.ILineTracker.set:(Ljava/lang/String;)V
         5: .line 189
            return
        end local 1 // java.lang.String text
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    6     1  text  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      text  

  public void replace(int, int, java.lang.String);
    descriptor: (IILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=4
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // int offset
        start local 2 // int length
        start local 3 // java.lang.String text
         0: .line 193
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.hasActiveRewriteSession:()Z
            ifeq 3
         1: .line 194
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
            new org.eclipse.jface.text.AbstractLineTracker$Request
            dup
            iload 1 /* offset */
            iload 2 /* length */
            aload 3 /* text */
            invokespecial org.eclipse.jface.text.AbstractLineTracker$Request.<init>:(IILjava/lang/String;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         2: .line 195
            return
         3: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.checkImplementation:()V
         4: .line 200
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            iload 1 /* offset */
            iload 2 /* length */
            aload 3 /* text */
            invokeinterface org.eclipse.jface.text.ILineTracker.replace:(IILjava/lang/String;)V
         5: .line 201
            return
        end local 3 // java.lang.String text
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    6     1  offset  I
            0    6     2  length  I
            0    6     3    text  Ljava/lang/String;
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
        Name  Flags
      offset  
      length  
      text    

  private void checkImplementation();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 209
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fNeedsConversion:Z
            ifeq 3
         1: .line 210
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.jface.text.AbstractLineTracker.fNeedsConversion:Z
         2: .line 211
            aload 0 /* this */
            new org.eclipse.jface.text.AbstractLineTracker$2
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
            checkcast org.eclipse.jface.text.ListLineTracker
            invokespecial org.eclipse.jface.text.AbstractLineTracker$2.<init>:(Lorg/eclipse/jface/text/AbstractLineTracker;Lorg/eclipse/jface/text/ListLineTracker;)V
            putfield org.eclipse.jface.text.AbstractLineTracker.fDelegate:Lorg/eclipse/jface/text/ILineTracker;
         3: .line 223
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;

  protected abstract org.eclipse.jface.text.AbstractLineTracker$DelimiterInfo nextDelimiterInfo(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Lorg/eclipse/jface/text/AbstractLineTracker$DelimiterInfo;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      text    
      offset  

  public final void startRewriteSession(org.eclipse.jface.text.DocumentRewriteSession);
    descriptor: (Lorg/eclipse/jface/text/DocumentRewriteSession;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // org.eclipse.jface.text.DocumentRewriteSession session
         0: .line 237
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
            ifnull 2
         1: .line 238
            new java.lang.IllegalStateException
            dup
            invokespecial java.lang.IllegalStateException.<init>:()V
            athrow
         2: .line 239
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* session */
            putfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
         3: .line 240
            aload 0 /* this */
            new java.util.ArrayList
            dup
            bipush 20
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
         4: .line 241
            return
        end local 1 // org.eclipse.jface.text.DocumentRewriteSession session
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    5     1  session  Lorg/eclipse/jface/text/DocumentRewriteSession;
    MethodParameters:
         Name  Flags
      session  

  public final void stopRewriteSession(org.eclipse.jface.text.DocumentRewriteSession, java.lang.String);
    descriptor: (Lorg/eclipse/jface/text/DocumentRewriteSession;Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
        start local 1 // org.eclipse.jface.text.DocumentRewriteSession session
        start local 2 // java.lang.String text
         0: .line 245
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
            aload 1 /* session */
            if_acmpne 4
         1: .line 246
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
         2: .line 247
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
         3: .line 248
            aload 0 /* this */
            aload 2 /* text */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.set:(Ljava/lang/String;)V
         4: .line 250
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String text
        end local 1 // org.eclipse.jface.text.DocumentRewriteSession session
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/jface/text/AbstractLineTracker;
            0    5     1  session  Lorg/eclipse/jface/text/DocumentRewriteSession;
            0    5     2     text  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      session  
      text     

  protected final boolean hasActiveRewriteSession();
    descriptor: ()Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 260
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;

  protected final void flushRewriteSession();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 273
            aload 0 /* this */
            getfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 1 /* e */
        start local 1 // java.util.Iterator e
         1: .line 275
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jface.text.AbstractLineTracker.fPendingRequests:Ljava/util/List;
         2: .line 276
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jface.text.AbstractLineTracker.fActiveRewriteSession:Lorg/eclipse/jface/text/DocumentRewriteSession;
         3: .line 278
            goto 8
         4: .line 279
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 1 /* e */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.jface.text.AbstractLineTracker$Request
            astore 2 /* request */
        start local 2 // org.eclipse.jface.text.AbstractLineTracker$Request request
         5: .line 280
            aload 2 /* request */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker$Request.isReplaceRequest:()Z
            ifeq 7
         6: .line 281
            aload 0 /* this */
            aload 2 /* request */
            getfield org.eclipse.jface.text.AbstractLineTracker$Request.offset:I
            aload 2 /* request */
            getfield org.eclipse.jface.text.AbstractLineTracker$Request.length:I
            aload 2 /* request */
            getfield org.eclipse.jface.text.AbstractLineTracker$Request.text:Ljava/lang/String;
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.replace:(IILjava/lang/String;)V
            goto 8
         7: .line 283
      StackMap locals: org.eclipse.jface.text.AbstractLineTracker$Request
      StackMap stack:
            aload 0 /* this */
            aload 2 /* request */
            getfield org.eclipse.jface.text.AbstractLineTracker$Request.text:Ljava/lang/String;
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.set:(Ljava/lang/String;)V
        end local 2 // org.eclipse.jface.text.AbstractLineTracker$Request request
         8: .line 278
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 285
            return
        end local 1 // java.util.Iterator e
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/eclipse/jface/text/AbstractLineTracker;
            1   10     1        e  Ljava/util/Iterator<Lorg/eclipse/jface/text/AbstractLineTracker$Request;>;
            5    8     2  request  Lorg/eclipse/jface/text/AbstractLineTracker$Request;
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException

  protected final void checkRewriteSession();
    descriptor: ()V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jface.text.AbstractLineTracker this
         0: .line 294
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.hasActiveRewriteSession:()Z
            ifeq 2
         1: .line 295
            aload 0 /* this */
            invokevirtual org.eclipse.jface.text.AbstractLineTracker.flushRewriteSession:()V
         2: .line 296
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jface.text.AbstractLineTracker this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jface/text/AbstractLineTracker;
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
}
SourceFile: "AbstractLineTracker.java"
NestMembers:
  org.eclipse.jface.text.AbstractLineTracker$1  org.eclipse.jface.text.AbstractLineTracker$2  org.eclipse.jface.text.AbstractLineTracker$DelimiterInfo  org.eclipse.jface.text.AbstractLineTracker$Request
InnerClasses:
  org.eclipse.jface.text.AbstractLineTracker$1
  org.eclipse.jface.text.AbstractLineTracker$2
  public DelimiterInfo = org.eclipse.jface.text.AbstractLineTracker$DelimiterInfo of org.eclipse.jface.text.AbstractLineTracker
  protected Request = org.eclipse.jface.text.AbstractLineTracker$Request of org.eclipse.jface.text.AbstractLineTracker