public abstract class org.eclipse.text.edits.TextEdit
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.eclipse.text.edits.TextEdit
  super_class: java.lang.Object
{
  public static final int NONE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int CREATE_UNDO;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  public static final int UPDATE_REGIONS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final org.eclipse.text.edits.TextEdit[] EMPTY_ARRAY;
    descriptor: [Lorg/eclipse/text/edits/TextEdit;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final org.eclipse.text.edits.TextEdit$InsertionComparator INSERTION_COMPARATOR;
    descriptor: Lorg/eclipse/text/edits/TextEdit$InsertionComparator;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int DELETED_VALUE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1

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

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

  private org.eclipse.text.edits.TextEdit fParent;
    descriptor: Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<org.eclipse.text.edits.TextEdit> fChildren;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;

  int fDelta;
    descriptor: I
    flags: (0x0000) 

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 132
            iconst_0
            anewarray org.eclipse.text.edits.TextEdit
            putstatic org.eclipse.text.edits.TextEdit.EMPTY_ARRAY:[Lorg/eclipse/text/edits/TextEdit;
         1: .line 133
            new org.eclipse.text.edits.TextEdit$InsertionComparator
            dup
            invokespecial org.eclipse.text.edits.TextEdit$InsertionComparator.<init>:()V
            putstatic org.eclipse.text.edits.TextEdit.INSERTION_COMPARATOR:Lorg/eclipse/text/edits/TextEdit$InsertionComparator;
         2: .line 135
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int offset
        start local 2 // int length
         0: .line 152
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 153
            iload 1 /* offset */
            iflt 2
            iload 2 /* length */
            iflt 2
            iconst_1
            goto 3
      StackMap locals: org.eclipse.text.edits.TextEdit int int
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         4: .line 154
            aload 0 /* this */
            iload 1 /* offset */
            putfield org.eclipse.text.edits.TextEdit.fOffset:I
         5: .line 155
            aload 0 /* this */
            iload 2 /* length */
            putfield org.eclipse.text.edits.TextEdit.fLength:I
         6: .line 156
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.text.edits.TextEdit.fDelta:I
         7: .line 157
            return
        end local 2 // int length
        end local 1 // int offset
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    8     1  offset  I
            0    8     2  length  I
    MethodParameters:
        Name  Flags
      offset  
      length  

  protected void <init>(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit source
         0: .line 164
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 165
            aload 0 /* this */
            aload 1 /* source */
            getfield org.eclipse.text.edits.TextEdit.fOffset:I
            putfield org.eclipse.text.edits.TextEdit.fOffset:I
         2: .line 166
            aload 0 /* this */
            aload 1 /* source */
            getfield org.eclipse.text.edits.TextEdit.fLength:I
            putfield org.eclipse.text.edits.TextEdit.fLength:I
         3: .line 167
            aload 0 /* this */
            iconst_0
            putfield org.eclipse.text.edits.TextEdit.fDelta:I
         4: .line 168
            return
        end local 1 // org.eclipse.text.edits.TextEdit source
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    5     1  source  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
        Name  Flags
      source  

  public final org.eclipse.jface.text.IRegion getRegion();
    descriptor: ()Lorg/eclipse/jface/text/IRegion;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 185
            new org.eclipse.jface.text.Region
            dup
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            invokespecial org.eclipse.jface.text.Region.<init>:(II)V
            areturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public int getOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 196
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fOffset:I
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public int getLength();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 206
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fLength:I
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final int getInclusiveEnd();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 221
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            iadd
            iconst_1
            isub
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final int getExclusiveEnd();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 236
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            iadd
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final boolean isDeleted();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 246
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fOffset:I
            iconst_m1
            if_icmpne 1
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fLength:I
            iconst_m1
            if_icmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final void moveTree(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int delta
         0: .line 257
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
            ifnonnull 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         3: .line 258
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            iload 1 /* delta */
            iadd
            iflt 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         6: .line 259
            aload 0 /* this */
            iload 1 /* delta */
            invokevirtual org.eclipse.text.edits.TextEdit.internalMoveTree:(I)V
         7: .line 260
            return
        end local 1 // int delta
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/eclipse/text/edits/TextEdit;
            0    8     1  delta  I
    MethodParameters:
       Name  Flags
      delta  

  public boolean covers(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit other
         0: .line 272
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            ifne 2
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.canZeroLengthCover:()Z
            ifne 2
         1: .line 273
            iconst_0
            ireturn
         2: .line 275
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            invokevirtual org.eclipse.text.edits.TextEdit.isDefined:()Z
            ifne 4
         3: .line 276
            iconst_1
            ireturn
         4: .line 278
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            istore 2 /* thisOffset */
        start local 2 // int thisOffset
         5: .line 279
            aload 1 /* other */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            istore 3 /* otherOffset */
        start local 3 // int otherOffset
         6: .line 280
            iload 2 /* thisOffset */
            iload 3 /* otherOffset */
            if_icmpgt 7
            iload 3 /* otherOffset */
            aload 1 /* other */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            iadd
            iload 2 /* thisOffset */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            iadd
            if_icmpgt 7
            iconst_1
            ireturn
      StackMap locals: int int
      StackMap stack:
         7: iconst_0
            ireturn
        end local 3 // int otherOffset
        end local 2 // int thisOffset
        end local 1 // org.eclipse.text.edits.TextEdit other
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/eclipse/text/edits/TextEdit;
            0    8     1        other  Lorg/eclipse/text/edits/TextEdit;
            5    8     2   thisOffset  I
            6    8     3  otherOffset  I
    MethodParameters:
       Name  Flags
      other  

  protected boolean canZeroLengthCover();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 290
            iconst_0
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  boolean isDefined();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 301
            iconst_1
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final org.eclipse.text.edits.TextEdit getParent();
    descriptor: ()Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 313
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
            areturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final org.eclipse.text.edits.TextEdit getRoot();
    descriptor: ()Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 323
            aload 0 /* this */
            astore 1 /* result */
        start local 1 // org.eclipse.text.edits.TextEdit result
         1: .line 324
            goto 3
         2: .line 325
      StackMap locals: org.eclipse.text.edits.TextEdit
      StackMap stack:
            aload 1 /* result */
            getfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
            astore 1 /* result */
         3: .line 324
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            getfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
            ifnonnull 2
         4: .line 327
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.text.edits.TextEdit result
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/text/edits/TextEdit;
            1    5     1  result  Lorg/eclipse/text/edits/TextEdit;

  public final void addChild(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit child
         0: .line 340
            aload 0 /* this */
            aload 1 /* child */
            invokevirtual org.eclipse.text.edits.TextEdit.internalAdd:(Lorg/eclipse/text/edits/TextEdit;)V
         1: .line 341
            return
        end local 1 // org.eclipse.text.edits.TextEdit child
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/eclipse/text/edits/TextEdit;
            0    2     1  child  Lorg/eclipse/text/edits/TextEdit;
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException
    MethodParameters:
       Name  Flags
      child  

  public final void addChildren(org.eclipse.text.edits.TextEdit[]);
    descriptor: ([Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit[] edits
         0: .line 353
            aload 1 /* edits */
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 4
      StackMap locals: org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEdit[] top int int org.eclipse.text.edits.TextEdit[]
      StackMap stack:
         1: aload 5
            iload 3
            aaload
            astore 2 /* edit */
        start local 2 // org.eclipse.text.edits.TextEdit edit
         2: .line 354
            aload 0 /* this */
            aload 2 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.internalAdd:(Lorg/eclipse/text/edits/TextEdit;)V
        end local 2 // org.eclipse.text.edits.TextEdit edit
         3: .line 353
            iinc 3 1
      StackMap locals:
      StackMap stack:
         4: iload 3
            iload 4
            if_icmplt 1
         5: .line 356
            return
        end local 1 // org.eclipse.text.edits.TextEdit[] edits
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/eclipse/text/edits/TextEdit;
            0    6     1  edits  [Lorg/eclipse/text/edits/TextEdit;
            2    3     2   edit  Lorg/eclipse/text/edits/TextEdit;
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException
    MethodParameters:
       Name  Flags
      edits  

  public final org.eclipse.text.edits.TextEdit removeChild(int);
    descriptor: (I)Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int index
         0: .line 370
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 2
         1: .line 371
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Index: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " Size: 0"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 372
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 1 /* index */
            invokeinterface java.util.List.remove:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 2 /* result */
        start local 2 // org.eclipse.text.edits.TextEdit result
         3: .line 373
            aload 2 /* result */
            aconst_null
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetParent:(Lorg/eclipse/text/edits/TextEdit;)V
         4: .line 374
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 6
         5: .line 375
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
         6: .line 376
      StackMap locals: org.eclipse.text.edits.TextEdit
      StackMap stack:
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.text.edits.TextEdit result
        end local 1 // int index
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    7     1   index  I
            3    7     2  result  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
       Name  Flags
      index  

  public final boolean removeChild(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit child
         0: .line 388
            aload 1 /* child */
            invokestatic org.eclipse.core.runtime.Assert.isNotNull:(Ljava/lang/Object;)V
         1: .line 389
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 3
         2: .line 390
            iconst_0
            ireturn
         3: .line 391
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            aload 1 /* child */
            invokeinterface java.util.List.remove:(Ljava/lang/Object;)Z
            istore 2 /* result */
        start local 2 // boolean result
         4: .line 392
            iload 2 /* result */
            ifeq 8
         5: .line 393
            aload 1 /* child */
            aconst_null
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetParent:(Lorg/eclipse/text/edits/TextEdit;)V
         6: .line 394
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 8
         7: .line 395
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
         8: .line 397
      StackMap locals: int
      StackMap stack:
            iload 2 /* result */
            ireturn
        end local 2 // boolean result
        end local 1 // org.eclipse.text.edits.TextEdit child
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    9     1   child  Lorg/eclipse/text/edits/TextEdit;
            4    9     2  result  Z
    MethodParameters:
       Name  Flags
      child  

  public final org.eclipse.text.edits.TextEdit[] removeChildren();
    descriptor: ()[Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 407
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 2
         1: .line 408
            getstatic org.eclipse.text.edits.TextEdit.EMPTY_ARRAY:[Lorg/eclipse/text/edits/TextEdit;
            areturn
         2: .line 409
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 1 /* size */
        start local 1 // int size
         3: .line 410
            iload 1 /* size */
            anewarray org.eclipse.text.edits.TextEdit
            astore 2 /* result */
        start local 2 // org.eclipse.text.edits.TextEdit[] result
         4: .line 411
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         5: goto 9
         6: .line 412
      StackMap locals: int org.eclipse.text.edits.TextEdit[] int
      StackMap stack:
            aload 2 /* result */
            iload 3 /* i */
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            aastore
         7: .line 413
            aload 2 /* result */
            iload 3 /* i */
            aaload
            aconst_null
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetParent:(Lorg/eclipse/text/edits/TextEdit;)V
         8: .line 411
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            iload 1 /* size */
            if_icmplt 6
        end local 3 // int i
        10: .line 415
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
        11: .line 416
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.text.edits.TextEdit[] result
        end local 1 // int size
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   12     0    this  Lorg/eclipse/text/edits/TextEdit;
            3   12     1    size  I
            4   12     2  result  [Lorg/eclipse/text/edits/TextEdit;
            5   10     3       i  I

  public final boolean hasChildren();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 427
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 1
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.isEmpty:()Z
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final org.eclipse.text.edits.TextEdit[] getChildren();
    descriptor: ()[Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 437
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 2
         1: .line 438
            getstatic org.eclipse.text.edits.TextEdit.EMPTY_ARRAY:[Lorg/eclipse/text/edits/TextEdit;
            areturn
         2: .line 439
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray org.eclipse.text.edits.TextEdit
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit[]
            areturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/text/edits/TextEdit;

  public final int getChildrenSize();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 448
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 2
         1: .line 449
            iconst_0
            ireturn
         2: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/text/edits/TextEdit;

  public static org.eclipse.jface.text.IRegion getCoverage(org.eclipse.text.edits.TextEdit[]);
    descriptor: ([Lorg/eclipse/text/edits/TextEdit;)Lorg/eclipse/jface/text/IRegion;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=5, locals=8, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit[] edits
         0: .line 464
            aload 0 /* edits */
            ifnull 1
            aload 0 /* edits */
            arraylength
            ifle 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         3: .line 466
            ldc 2147483647
            istore 1 /* offset */
        start local 1 // int offset
         4: .line 467
            ldc -2147483648
            istore 2 /* end */
        start local 2 // int end
         5: .line 468
            iconst_0
            istore 3 /* deleted */
        start local 3 // int deleted
         6: .line 469
            aload 0 /* edits */
            dup
            astore 7
            arraylength
            istore 6
            iconst_0
            istore 5
            goto 14
      StackMap locals: org.eclipse.text.edits.TextEdit[] int int int top int int org.eclipse.text.edits.TextEdit[]
      StackMap stack:
         7: aload 7
            iload 5
            aaload
            astore 4 /* edit */
        start local 4 // org.eclipse.text.edits.TextEdit edit
         8: .line 470
            aload 4 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.isDeleted:()Z
            ifeq 11
         9: .line 471
            iinc 3 /* deleted */ 1
        10: .line 472
            goto 13
        11: .line 473
      StackMap locals: org.eclipse.text.edits.TextEdit[] int int int org.eclipse.text.edits.TextEdit int int org.eclipse.text.edits.TextEdit[]
      StackMap stack:
            iload 1 /* offset */
            aload 4 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            invokestatic java.lang.Math.min:(II)I
            istore 1 /* offset */
        12: .line 474
            iload 2 /* end */
            aload 4 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.getExclusiveEnd:()I
            invokestatic java.lang.Math.max:(II)I
            istore 2 /* end */
        end local 4 // org.eclipse.text.edits.TextEdit edit
        13: .line 469
      StackMap locals: org.eclipse.text.edits.TextEdit[] int int int top int int org.eclipse.text.edits.TextEdit[]
      StackMap stack:
            iinc 5 1
      StackMap locals:
      StackMap stack:
        14: iload 5
            iload 6
            if_icmplt 7
        15: .line 477
            aload 0 /* edits */
            arraylength
            iload 3 /* deleted */
            if_icmpne 17
        16: .line 478
            aconst_null
            areturn
        17: .line 480
      StackMap locals: org.eclipse.text.edits.TextEdit[] int int int
      StackMap stack:
            new org.eclipse.jface.text.Region
            dup
            iload 1 /* offset */
            iload 2 /* end */
            iload 1 /* offset */
            isub
            invokespecial org.eclipse.jface.text.Region.<init>:(II)V
            areturn
        end local 3 // int deleted
        end local 2 // int end
        end local 1 // int offset
        end local 0 // org.eclipse.text.edits.TextEdit[] edits
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0    edits  [Lorg/eclipse/text/edits/TextEdit;
            4   18     1   offset  I
            5   18     2      end  I
            6   18     3  deleted  I
            8   13     4     edit  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
       Name  Flags
      edits  

  void aboutToBeAdded(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit parent
         0: .line 489
            return
        end local 1 // org.eclipse.text.edits.TextEdit parent
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  parent  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
        Name  Flags
      parent  

  public final boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // java.lang.Object obj
         0: .line 505
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/text/edits/TextEdit;
            0    2     1   obj  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      obj   

  public final int hashCode();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 519
            aload 0 /* this */
            invokespecial java.lang.Object.hashCode:()I
            ireturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 524
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* buffer */
        start local 1 // java.lang.StringBuilder buffer
         1: .line 525
            aload 0 /* this */
            aload 1 /* buffer */
            iconst_0
            invokevirtual org.eclipse.text.edits.TextEdit.toStringWithChildren:(Ljava/lang/StringBuilder;I)V
         2: .line 526
            aload 1 /* buffer */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/eclipse/text/edits/TextEdit;
            1    3     1  buffer  Ljava/lang/StringBuilder;

  void internalToString(java.lang.StringBuilder, int);
    descriptor: (Ljava/lang/StringBuilder;I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // java.lang.StringBuilder buffer
        start local 2 // int indent
         0: .line 538
            iload 2 /* indent */
            istore 3 /* i */
        start local 3 // int i
         1: goto 4
         2: .line 539
      StackMap locals: int
      StackMap stack:
            aload 1 /* buffer */
            ldc "  "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         3: .line 538
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
         4: iload 3 /* i */
            ifgt 2
        end local 3 // int i
         5: .line 541
            aload 1 /* buffer */
            ldc "{"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
         6: .line 542
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            astore 3 /* name */
        start local 3 // java.lang.String name
         7: .line 543
            aload 3 /* name */
            bipush 46
            invokevirtual java.lang.String.lastIndexOf:(I)I
            istore 4 /* index */
        start local 4 // int index
         8: .line 544
            iload 4 /* index */
            iconst_m1
            if_icmpeq 11
         9: .line 545
            aload 1 /* buffer */
            aload 3 /* name */
            iload 4 /* index */
            iconst_1
            iadd
            invokevirtual java.lang.String.substring:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        10: .line 546
            goto 12
        11: .line 547
      StackMap locals: org.eclipse.text.edits.TextEdit java.lang.StringBuilder int java.lang.String int
      StackMap stack:
            aload 1 /* buffer */
            aload 3 /* name */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        12: .line 549
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            ldc "} "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        13: .line 550
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.isDeleted:()Z
            ifeq 16
        14: .line 551
            aload 1 /* buffer */
            ldc "[deleted]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        15: .line 552
            goto 21
        16: .line 553
      StackMap locals:
      StackMap stack:
            aload 1 /* buffer */
            ldc "["
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        17: .line 554
            aload 1 /* buffer */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        18: .line 555
            aload 1 /* buffer */
            ldc ","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        19: .line 556
            aload 1 /* buffer */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.getLength:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            pop
        20: .line 557
            aload 1 /* buffer */
            ldc "]"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            pop
        21: .line 559
      StackMap locals:
      StackMap stack:
            return
        end local 4 // int index
        end local 3 // java.lang.String name
        end local 2 // int indent
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Lorg/eclipse/text/edits/TextEdit;
            0   22     1  buffer  Ljava/lang/StringBuilder;
            0   22     2  indent  I
            1    5     3       i  I
            7   22     3    name  Ljava/lang/String;
            8   22     4   index  I
    MethodParameters:
        Name  Flags
      buffer  
      indent  

  private void toStringWithChildren(java.lang.StringBuilder, int);
    descriptor: (Ljava/lang/StringBuilder;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // java.lang.StringBuilder buffer
        start local 2 // int indent
         0: .line 570
            aload 0 /* this */
            aload 1 /* buffer */
            iload 2 /* indent */
            invokevirtual org.eclipse.text.edits.TextEdit.internalToString:(Ljava/lang/StringBuilder;I)V
         1: .line 571
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 7
         2: .line 572
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4
            goto 6
      StackMap locals: org.eclipse.text.edits.TextEdit java.lang.StringBuilder int top java.util.Iterator
      StackMap stack:
         3: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 3 /* child */
        start local 3 // org.eclipse.text.edits.TextEdit child
         4: .line 573
            aload 1 /* buffer */
            bipush 10
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         5: .line 574
            aload 3 /* child */
            aload 1 /* buffer */
            iload 2 /* indent */
            iconst_1
            iadd
            invokevirtual org.eclipse.text.edits.TextEdit.toStringWithChildren:(Ljava/lang/StringBuilder;I)V
        end local 3 // org.eclipse.text.edits.TextEdit child
         6: .line 572
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 577
      StackMap locals: org.eclipse.text.edits.TextEdit java.lang.StringBuilder int
      StackMap stack:
            return
        end local 2 // int indent
        end local 1 // java.lang.StringBuilder buffer
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    8     1  buffer  Ljava/lang/StringBuilder;
            0    8     2  indent  I
            4    6     3   child  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
        Name  Flags
      buffer  
      indent  

  public final org.eclipse.text.edits.TextEdit copy();
    descriptor: ()Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 589
            new org.eclipse.text.edits.TextEditCopier
            dup
            aload 0 /* this */
            invokespecial org.eclipse.text.edits.TextEditCopier.<init>:(Lorg/eclipse/text/edits/TextEdit;)V
            astore 1 /* copier */
        start local 1 // org.eclipse.text.edits.TextEditCopier copier
         1: .line 590
            aload 1 /* copier */
            invokevirtual org.eclipse.text.edits.TextEditCopier.perform:()Lorg/eclipse/text/edits/TextEdit;
            areturn
        end local 1 // org.eclipse.text.edits.TextEditCopier copier
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/eclipse/text/edits/TextEdit;
            1    2     1  copier  Lorg/eclipse/text/edits/TextEditCopier;

  protected abstract org.eclipse.text.edits.TextEdit doCopy();
    descriptor: ()Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT

  protected void postProcessCopy(org.eclipse.text.edits.TextEditCopier);
    descriptor: (Lorg/eclipse/text/edits/TextEditCopier;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditCopier copier
         0: .line 626
            return
        end local 1 // org.eclipse.text.edits.TextEditCopier copier
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  copier  Lorg/eclipse/text/edits/TextEditCopier;
    MethodParameters:
        Name  Flags
      copier  

  public final void accept(org.eclipse.text.edits.TextEditVisitor);
    descriptor: (Lorg/eclipse/text/edits/TextEditVisitor;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditVisitor visitor
         0: .line 637
            aload 1 /* visitor */
            invokestatic org.eclipse.core.runtime.Assert.isNotNull:(Ljava/lang/Object;)V
         1: .line 639
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEditVisitor.preVisit:(Lorg/eclipse/text/edits/TextEdit;)V
         2: .line 641
            aload 0 /* this */
            aload 1 /* visitor */
            invokevirtual org.eclipse.text.edits.TextEdit.accept0:(Lorg/eclipse/text/edits/TextEditVisitor;)V
         3: .line 643
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEditVisitor.postVisit:(Lorg/eclipse/text/edits/TextEdit;)V
         4: .line 644
            return
        end local 1 // org.eclipse.text.edits.TextEditVisitor visitor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/eclipse/text/edits/TextEdit;
            0    5     1  visitor  Lorg/eclipse/text/edits/TextEditVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  protected abstract void accept0(org.eclipse.text.edits.TextEditVisitor);
    descriptor: (Lorg/eclipse/text/edits/TextEditVisitor;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
         Name  Flags
      visitor  

  protected final void acceptChildren(org.eclipse.text.edits.TextEditVisitor);
    descriptor: (Lorg/eclipse/text/edits/TextEditVisitor;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditVisitor visitor
         0: .line 679
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 2
         1: .line 680
            return
         2: .line 681
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2 /* iterator */
        start local 2 // java.util.Iterator iterator
         3: .line 682
            goto 6
         4: .line 683
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 3 /* curr */
        start local 3 // org.eclipse.text.edits.TextEdit curr
         5: .line 684
            aload 3 /* curr */
            aload 1 /* visitor */
            invokevirtual org.eclipse.text.edits.TextEdit.accept:(Lorg/eclipse/text/edits/TextEditVisitor;)V
        end local 3 // org.eclipse.text.edits.TextEdit curr
         6: .line 682
      StackMap locals:
      StackMap stack:
            aload 2 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 686
            return
        end local 2 // java.util.Iterator iterator
        end local 1 // org.eclipse.text.edits.TextEditVisitor visitor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lorg/eclipse/text/edits/TextEdit;
            0    8     1   visitor  Lorg/eclipse/text/edits/TextEditVisitor;
            3    8     2  iterator  Ljava/util/Iterator<Lorg/eclipse/text/edits/TextEdit;>;
            5    6     3      curr  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
         Name  Flags
      visitor  

  public final org.eclipse.text.edits.UndoEdit apply(org.eclipse.jface.text.IDocument, int);
    descriptor: (Lorg/eclipse/jface/text/IDocument;I)Lorg/eclipse/text/edits/UndoEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.jface.text.IDocument document
        start local 2 // int style
         0: .line 713
            new org.eclipse.text.edits.TextEditProcessor
            dup
            aload 1 /* document */
            aload 0 /* this */
            iload 2 /* style */
            invokespecial org.eclipse.text.edits.TextEditProcessor.<init>:(Lorg/eclipse/jface/text/IDocument;Lorg/eclipse/text/edits/TextEdit;I)V
            astore 3 /* processor */
        start local 3 // org.eclipse.text.edits.TextEditProcessor processor
         1: .line 714
            aload 3 /* processor */
            invokevirtual org.eclipse.text.edits.TextEditProcessor.performEdits:()Lorg/eclipse/text/edits/UndoEdit;
            astore 5
         2: .line 717
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
         3: .line 714
            aload 5
            areturn
        end local 3 // org.eclipse.text.edits.TextEditProcessor processor
         4: .line 715
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 4
         5: .line 717
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
         6: .line 718
            aload 4
            athrow
        end local 2 // int style
        end local 1 // org.eclipse.jface.text.IDocument document
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    7     1   document  Lorg/eclipse/jface/text/IDocument;
            0    7     2      style  I
            1    4     3  processor  Lorg/eclipse/text/edits/TextEditProcessor;
      Exception table:
        from    to  target  type
           0     2       4  any
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException, org.eclipse.jface.text.BadLocationException
    MethodParameters:
          Name  Flags
      document  
      style     

  public final org.eclipse.text.edits.UndoEdit apply(org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/jface/text/IDocument;)Lorg/eclipse/text/edits/UndoEdit;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.jface.text.IDocument document
         0: .line 738
            aload 0 /* this */
            aload 1 /* document */
            iconst_3
            invokevirtual org.eclipse.text.edits.TextEdit.apply:(Lorg/eclipse/jface/text/IDocument;I)Lorg/eclipse/text/edits/UndoEdit;
            areturn
        end local 1 // org.eclipse.jface.text.IDocument document
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  document  Lorg/eclipse/jface/text/IDocument;
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException, org.eclipse.jface.text.BadLocationException
    MethodParameters:
          Name  Flags
      document  

  org.eclipse.text.edits.UndoEdit dispatchPerformEdits(org.eclipse.text.edits.TextEditProcessor);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;)Lorg/eclipse/text/edits/UndoEdit;
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
         0: .line 742
            aload 1 /* processor */
            invokevirtual org.eclipse.text.edits.TextEditProcessor.executeDo:()Lorg/eclipse/text/edits/UndoEdit;
            areturn
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
           Name  Flags
      processor  

  void dispatchCheckIntegrity(org.eclipse.text.edits.TextEditProcessor);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;)V
    flags: (0x0000) 
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
         0: .line 746
            aload 1 /* processor */
            invokevirtual org.eclipse.text.edits.TextEditProcessor.checkIntegrityDo:()V
         1: .line 747
            return
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    2     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException
    MethodParameters:
           Name  Flags
      processor  

  void internalSetParent(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit parent
         0: .line 752
            aload 1 /* parent */
            ifnull 4
         1: .line 753
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
            ifnonnull 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         4: .line 754
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* parent */
            putfield org.eclipse.text.edits.TextEdit.fParent:Lorg/eclipse/text/edits/TextEdit;
         5: .line 755
            return
        end local 1 // org.eclipse.text.edits.TextEdit parent
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    6     1  parent  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
        Name  Flags
      parent  

  void internalSetOffset(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int offset
         0: .line 758
            iload 1 /* offset */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         3: .line 759
            aload 0 /* this */
            iload 1 /* offset */
            putfield org.eclipse.text.edits.TextEdit.fOffset:I
         4: .line 760
            return
        end local 1 // int offset
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    5     1  offset  I
    MethodParameters:
        Name  Flags
      offset  

  void internalSetLength(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int length
         0: .line 763
            iload 1 /* length */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         3: .line 764
            aload 0 /* this */
            iload 1 /* length */
            putfield org.eclipse.text.edits.TextEdit.fLength:I
         4: .line 765
            return
        end local 1 // int length
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/eclipse/text/edits/TextEdit;
            0    5     1  length  I
    MethodParameters:
        Name  Flags
      length  

  java.util.List<org.eclipse.text.edits.TextEdit> internalGetChildren();
    descriptor: ()Ljava/util/List;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 768
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            areturn
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;
    Signature: ()Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;

  void internalSetChildren(java.util.List<org.eclipse.text.edits.TextEdit>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // java.util.List children
         0: .line 772
            aload 0 /* this */
            aload 1 /* children */
            putfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
         1: .line 773
            return
        end local 1 // java.util.List children
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/text/edits/TextEdit;
            0    2     1  children  Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;
    Signature: (Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;)V
    MethodParameters:
          Name  Flags
      children  

  void internalAdd(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit child
         0: .line 776
            aload 1 /* child */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.aboutToBeAdded:(Lorg/eclipse/text/edits/TextEdit;)V
         1: .line 777
            aload 1 /* child */
            invokevirtual org.eclipse.text.edits.TextEdit.isDeleted:()Z
            ifeq 3
         2: .line 778
            new org.eclipse.text.edits.MalformedTreeException
            dup
            aload 0 /* this */
            aload 1 /* child */
            ldc "TextEdit.deleted_edit"
            invokestatic org.eclipse.text.edits.TextEditMessages.getString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial org.eclipse.text.edits.MalformedTreeException.<init>:(Lorg/eclipse/text/edits/TextEdit;Lorg/eclipse/text/edits/TextEdit;Ljava/lang/String;)V
            athrow
         3: .line 779
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* child */
            invokevirtual org.eclipse.text.edits.TextEdit.covers:(Lorg/eclipse/text/edits/TextEdit;)Z
            ifne 5
         4: .line 780
            new org.eclipse.text.edits.MalformedTreeException
            dup
            aload 0 /* this */
            aload 1 /* child */
            ldc "TextEdit.range_outside"
            invokestatic org.eclipse.text.edits.TextEditMessages.getString:(Ljava/lang/String;)Ljava/lang/String;
            invokespecial org.eclipse.text.edits.MalformedTreeException.<init>:(Lorg/eclipse/text/edits/TextEdit;Lorg/eclipse/text/edits/TextEdit;Ljava/lang/String;)V
            athrow
         5: .line 781
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnonnull 7
         6: .line 782
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_2
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
         7: .line 784
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* child */
            invokevirtual org.eclipse.text.edits.TextEdit.computeInsertionIndex:(Lorg/eclipse/text/edits/TextEdit;)I
            istore 2 /* index */
        start local 2 // int index
         8: .line 785
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 2 /* index */
            aload 1 /* child */
            invokeinterface java.util.List.add:(ILjava/lang/Object;)V
         9: .line 786
            aload 1 /* child */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetParent:(Lorg/eclipse/text/edits/TextEdit;)V
        10: .line 787
            return
        end local 2 // int index
        end local 1 // org.eclipse.text.edits.TextEdit child
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Lorg/eclipse/text/edits/TextEdit;
            0   11     1  child  Lorg/eclipse/text/edits/TextEdit;
            8   11     2  index  I
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException
    MethodParameters:
       Name  Flags
      child  

  private int computeInsertionIndex(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEdit edit
         0: .line 790
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            istore 2 /* size */
        start local 2 // int size
         1: .line 791
            iload 2 /* size */
            ifne 3
         2: .line 792
            iconst_0
            ireturn
         3: .line 793
      StackMap locals: int
      StackMap stack:
            iload 2 /* size */
            iconst_1
            isub
            istore 3 /* lastIndex */
        start local 3 // int lastIndex
         4: .line 794
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 3 /* lastIndex */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 4 /* last */
        start local 4 // org.eclipse.text.edits.TextEdit last
         5: .line 795
            aload 4 /* last */
            invokevirtual org.eclipse.text.edits.TextEdit.getExclusiveEnd:()I
            aload 1 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.getOffset:()I
            if_icmpgt 7
         6: .line 796
            iload 2 /* size */
            ireturn
         7: .line 799
      StackMap locals: int org.eclipse.text.edits.TextEdit
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            aload 1 /* edit */
            getstatic org.eclipse.text.edits.TextEdit.INSERTION_COMPARATOR:Lorg/eclipse/text/edits/TextEdit$InsertionComparator;
            invokestatic java.util.Collections.binarySearch:(Ljava/util/List;Ljava/lang/Object;Ljava/util/Comparator;)I
            istore 5 /* index */
        start local 5 // int index
         8: .line 801
            iload 5 /* index */
            ifge 12
         9: .line 803
            iload 5 /* index */
            ineg
            iconst_1
            isub
        10: ireturn
        11: .line 808
      StackMap locals: int
      StackMap stack:
            iinc 5 /* index */ 1
        12: .line 807
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            iload 3 /* lastIndex */
            if_icmpge 13
            getstatic org.eclipse.text.edits.TextEdit.INSERTION_COMPARATOR:Lorg/eclipse/text/edits/TextEdit$InsertionComparator;
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 5 /* index */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 5 /* index */
            iconst_1
            iadd
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            invokevirtual org.eclipse.text.edits.TextEdit$InsertionComparator.compare:(Lorg/eclipse/text/edits/TextEdit;Lorg/eclipse/text/edits/TextEdit;)I
            ifeq 11
        13: .line 810
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            iconst_1
            iadd
        14: ireturn
        end local 5 // int index
        15: .line 812
      StackMap locals: org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEdit int int org.eclipse.text.edits.TextEdit
      StackMap stack: org.eclipse.text.edits.MalformedTreeException
            astore 5 /* e */
        start local 5 // org.eclipse.text.edits.MalformedTreeException e
        16: .line 813
            aload 5 /* e */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.MalformedTreeException.setParent:(Lorg/eclipse/text/edits/TextEdit;)V
        17: .line 814
            aload 5 /* e */
            athrow
        end local 5 // org.eclipse.text.edits.MalformedTreeException e
        end local 4 // org.eclipse.text.edits.TextEdit last
        end local 3 // int lastIndex
        end local 2 // int size
        end local 1 // org.eclipse.text.edits.TextEdit edit
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   18     0       this  Lorg/eclipse/text/edits/TextEdit;
            0   18     1       edit  Lorg/eclipse/text/edits/TextEdit;
            1   18     2       size  I
            4   18     3  lastIndex  I
            5   18     4       last  Lorg/eclipse/text/edits/TextEdit;
            8   15     5      index  I
           16   18     5          e  Lorg/eclipse/text/edits/MalformedTreeException;
      Exception table:
        from    to  target  type
           7    10      15  Class org.eclipse.text.edits.MalformedTreeException
          11    14      15  Class org.eclipse.text.edits.MalformedTreeException
    Exceptions:
      throws org.eclipse.text.edits.MalformedTreeException
    MethodParameters:
      Name  Flags
      edit  

  void adjustOffset(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int delta
         0: .line 827
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.isDeleted:()Z
            ifeq 2
         1: .line 828
            return
         2: .line 829
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.text.edits.TextEdit.fOffset:I
            iload 1 /* delta */
            iadd
            putfield org.eclipse.text.edits.TextEdit.fOffset:I
         3: .line 830
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fOffset:I
            iflt 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         6: .line 831
            return
        end local 1 // int delta
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/text/edits/TextEdit;
            0    7     1  delta  I
    MethodParameters:
       Name  Flags
      delta  

  void adjustLength(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int delta
         0: .line 840
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.isDeleted:()Z
            ifeq 2
         1: .line 841
            return
         2: .line 842
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.eclipse.text.edits.TextEdit.fLength:I
            iload 1 /* delta */
            iadd
            putfield org.eclipse.text.edits.TextEdit.fLength:I
         3: .line 843
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fLength:I
            iflt 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: invokestatic org.eclipse.core.runtime.Assert.isTrue:(Z)Z
            pop
         6: .line 844
            return
        end local 1 // int delta
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/text/edits/TextEdit;
            0    7     1  delta  I
    MethodParameters:
       Name  Flags
      delta  

  void markAsDeleted();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 851
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.text.edits.TextEdit.fOffset:I
         1: .line 852
            aload 0 /* this */
            iconst_m1
            putfield org.eclipse.text.edits.TextEdit.fLength:I
         2: .line 853
            return
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/text/edits/TextEdit;

  int traverseConsistencyCheck(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument, java.util.List<java.util.List<org.eclipse.text.edits.TextEdit>>);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;Ljava/util/List;)I
    flags: (0x0000) 
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
        start local 3 // java.util.List sourceEdits
         0: .line 868
            iconst_0
            istore 4 /* result */
        start local 4 // int result
         1: .line 869
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 8
         2: .line 870
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         3: goto 7
         4: .line 871
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 5 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 6 /* child */
        start local 6 // org.eclipse.text.edits.TextEdit child
         5: .line 872
            iload 4 /* result */
            aload 6 /* child */
            aload 1 /* processor */
            aload 2 /* document */
            aload 3 /* sourceEdits */
            invokevirtual org.eclipse.text.edits.TextEdit.traverseConsistencyCheck:(Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;Ljava/util/List;)I
            invokestatic java.lang.Math.max:(II)I
            istore 4 /* result */
        end local 6 // org.eclipse.text.edits.TextEdit child
         6: .line 870
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            ifge 4
        end local 5 // int i
         8: .line 875
      StackMap locals:
      StackMap stack:
            aload 1 /* processor */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEditProcessor.considerEdit:(Lorg/eclipse/text/edits/TextEdit;)Z
            ifeq 10
         9: .line 876
            aload 0 /* this */
            aload 1 /* processor */
            aload 2 /* document */
            invokevirtual org.eclipse.text.edits.TextEdit.performConsistencyCheck:(Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)V
        10: .line 878
      StackMap locals:
      StackMap stack:
            iload 4 /* result */
            ireturn
        end local 4 // int result
        end local 3 // java.util.List sourceEdits
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   11     0         this  Lorg/eclipse/text/edits/TextEdit;
            0   11     1    processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0   11     2     document  Lorg/eclipse/jface/text/IDocument;
            0   11     3  sourceEdits  Ljava/util/List<Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;>;
            1   11     4       result  I
            3    8     5            i  I
            5    6     6        child  Lorg/eclipse/text/edits/TextEdit;
    Signature: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;Ljava/util/List<Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;>;)I
    MethodParameters:
             Name  Flags
      processor    
      document     
      sourceEdits  

  void performConsistencyCheck(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)V
    flags: (0x0000) 
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
         0: .line 888
            return
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0    1     2   document  Lorg/eclipse/jface/text/IDocument;
    MethodParameters:
           Name  Flags
      processor  
      document   

  void traverseSourceComputation(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)V
    flags: (0x0000) 
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
         0: .line 897
            return
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0    1     2   document  Lorg/eclipse/jface/text/IDocument;
    MethodParameters:
           Name  Flags
      processor  
      document   

  void performSourceComputation(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)V
    flags: (0x0000) 
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
         0: .line 906
            return
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/eclipse/text/edits/TextEdit;
            0    1     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0    1     2   document  Lorg/eclipse/jface/text/IDocument;
    MethodParameters:
           Name  Flags
      processor  
      document   

  int traverseDocumentUpdating(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)I
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
         0: .line 909
            iconst_0
            istore 3 /* delta */
        start local 3 // int delta
         1: .line 910
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 9
         2: .line 911
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            istore 4 /* i */
        start local 4 // int i
         3: goto 8
         4: .line 912
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            iload 4 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 5 /* child */
        start local 5 // org.eclipse.text.edits.TextEdit child
         5: .line 913
            iload 3 /* delta */
            aload 5 /* child */
            aload 1 /* processor */
            aload 2 /* document */
            invokevirtual org.eclipse.text.edits.TextEdit.traverseDocumentUpdating:(Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;)I
            iadd
            istore 3 /* delta */
         6: .line 914
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.childDocumentUpdated:()V
        end local 5 // org.eclipse.text.edits.TextEdit child
         7: .line 911
            iinc 4 /* i */ -1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            ifge 4
        end local 4 // int i
         9: .line 917
      StackMap locals:
      StackMap stack:
            aload 1 /* processor */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEditProcessor.considerEdit:(Lorg/eclipse/text/edits/TextEdit;)Z
            ifeq 16
        10: .line 918
            iload 3 /* delta */
            ifeq 12
        11: .line 919
            aload 0 /* this */
            iload 3 /* delta */
            invokevirtual org.eclipse.text.edits.TextEdit.adjustLength:(I)V
        12: .line 920
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* document */
            invokevirtual org.eclipse.text.edits.TextEdit.performDocumentUpdating:(Lorg/eclipse/jface/text/IDocument;)I
            istore 4 /* r */
        start local 4 // int r
        13: .line 921
            iload 4 /* r */
            ifeq 15
        14: .line 922
            aload 0 /* this */
            iload 4 /* r */
            invokevirtual org.eclipse.text.edits.TextEdit.adjustLength:(I)V
        15: .line 923
      StackMap locals: int
      StackMap stack:
            iload 3 /* delta */
            iload 4 /* r */
            iadd
            istore 3 /* delta */
        end local 4 // int r
        16: .line 925
      StackMap locals:
      StackMap stack:
            iload 3 /* delta */
            ireturn
        end local 3 // int delta
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lorg/eclipse/text/edits/TextEdit;
            0   17     1  processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0   17     2   document  Lorg/eclipse/jface/text/IDocument;
            1   17     3      delta  I
            3    9     4          i  I
            5    7     5      child  Lorg/eclipse/text/edits/TextEdit;
           13   16     4          r  I
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
           Name  Flags
      processor  
      document   

  protected void childDocumentUpdated();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 939
            return
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  abstract int performDocumentUpdating(org.eclipse.jface.text.IDocument);
    descriptor: (Lorg/eclipse/jface/text/IDocument;)I
    flags: (0x0400) ACC_ABSTRACT
    Exceptions:
      throws org.eclipse.jface.text.BadLocationException
    MethodParameters:
          Name  Flags
      document  

  int traverseRegionUpdating(org.eclipse.text.edits.TextEditProcessor, org.eclipse.jface.text.IDocument, int, boolean);
    descriptor: (Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;IZ)I
    flags: (0x0000) 
    Code:
      stack=5, locals=8, args_size=5
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // org.eclipse.text.edits.TextEditProcessor processor
        start local 2 // org.eclipse.jface.text.IDocument document
        start local 3 // int accumulatedDelta
        start local 4 // boolean delete
         0: .line 944
            aload 0 /* this */
            iload 3 /* accumulatedDelta */
            iload 4 /* delete */
            invokevirtual org.eclipse.text.edits.TextEdit.performRegionUpdating:(IZ)V
         1: .line 945
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 10
         2: .line 946
            iload 4 /* delete */
            ifne 3
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.deleteChildren:()Z
            ifne 3
            iconst_0
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_1
      StackMap locals:
      StackMap stack: int
         4: istore 5 /* childDelete */
        start local 5 // boolean childDelete
         5: .line 947
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 7
            goto 9
      StackMap locals: org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEditProcessor org.eclipse.jface.text.IDocument int int int top java.util.Iterator
      StackMap stack:
         6: aload 7
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 6 /* child */
        start local 6 // org.eclipse.text.edits.TextEdit child
         7: .line 948
            aload 6 /* child */
            aload 1 /* processor */
            aload 2 /* document */
            iload 3 /* accumulatedDelta */
            iload 5 /* childDelete */
            invokevirtual org.eclipse.text.edits.TextEdit.traverseRegionUpdating:(Lorg/eclipse/text/edits/TextEditProcessor;Lorg/eclipse/jface/text/IDocument;IZ)I
            istore 3 /* accumulatedDelta */
         8: .line 949
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.childRegionUpdated:()V
        end local 6 // org.eclipse.text.edits.TextEdit child
         9: .line 947
      StackMap locals:
      StackMap stack:
            aload 7
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 6
        end local 5 // boolean childDelete
        10: .line 952
      StackMap locals: org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEditProcessor org.eclipse.jface.text.IDocument int int
      StackMap stack:
            iload 3 /* accumulatedDelta */
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fDelta:I
            iadd
            ireturn
        end local 4 // boolean delete
        end local 3 // int accumulatedDelta
        end local 2 // org.eclipse.jface.text.IDocument document
        end local 1 // org.eclipse.text.edits.TextEditProcessor processor
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lorg/eclipse/text/edits/TextEdit;
            0   11     1         processor  Lorg/eclipse/text/edits/TextEditProcessor;
            0   11     2          document  Lorg/eclipse/jface/text/IDocument;
            0   11     3  accumulatedDelta  I
            0   11     4            delete  Z
            5   10     5       childDelete  Z
            7    9     6             child  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
                  Name  Flags
      processor         
      document          
      accumulatedDelta  
      delete            

  protected void childRegionUpdated();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 968
            return
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/text/edits/TextEdit;

  void performRegionUpdating(int, boolean);
    descriptor: (IZ)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int accumulatedDelta
        start local 2 // boolean delete
         0: .line 971
            iload 2 /* delete */
            ifeq 2
         1: .line 972
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.markAsDeleted:()V
            goto 3
         2: .line 974
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* accumulatedDelta */
            invokevirtual org.eclipse.text.edits.TextEdit.adjustOffset:(I)V
         3: .line 975
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean delete
        end local 1 // int accumulatedDelta
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/eclipse/text/edits/TextEdit;
            0    4     1  accumulatedDelta  I
            0    4     2            delete  Z
    MethodParameters:
                  Name  Flags
      accumulatedDelta  
      delete            

  abstract boolean deleteChildren();
    descriptor: ()Z
    flags: (0x0400) ACC_ABSTRACT

  void internalMoveTree(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.text.edits.TextEdit this
        start local 1 // int delta
         0: .line 980
            aload 0 /* this */
            iload 1 /* delta */
            invokevirtual org.eclipse.text.edits.TextEdit.adjustOffset:(I)V
         1: .line 981
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 6
         2: .line 982
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.eclipse.text.edits.TextEdit int top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 2 /* textEdit */
        start local 2 // org.eclipse.text.edits.TextEdit textEdit
         4: .line 983
            aload 2 /* textEdit */
            iload 1 /* delta */
            invokevirtual org.eclipse.text.edits.TextEdit.internalMoveTree:(I)V
        end local 2 // org.eclipse.text.edits.TextEdit textEdit
         5: .line 982
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 986
      StackMap locals: org.eclipse.text.edits.TextEdit int
      StackMap stack:
            return
        end local 1 // int delta
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/eclipse/text/edits/TextEdit;
            0    7     1     delta  I
            4    5     2  textEdit  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
       Name  Flags
      delta  

  void deleteTree();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=3, args_size=1
        start local 0 // org.eclipse.text.edits.TextEdit this
         0: .line 989
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.markAsDeleted:()V
         1: .line 990
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            ifnull 6
         2: .line 991
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEdit.fChildren:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 2
            goto 5
      StackMap locals: org.eclipse.text.edits.TextEdit top java.util.Iterator
      StackMap stack:
         3: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 1 /* child */
        start local 1 // org.eclipse.text.edits.TextEdit child
         4: .line 992
            aload 1 /* child */
            invokevirtual org.eclipse.text.edits.TextEdit.deleteTree:()V
        end local 1 // org.eclipse.text.edits.TextEdit child
         5: .line 991
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 995
      StackMap locals: org.eclipse.text.edits.TextEdit
      StackMap stack:
            return
        end local 0 // org.eclipse.text.edits.TextEdit this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/eclipse/text/edits/TextEdit;
            4    5     1  child  Lorg/eclipse/text/edits/TextEdit;
}
SourceFile: "TextEdit.java"
NestMembers:
  org.eclipse.text.edits.TextEdit$InsertionComparator
InnerClasses:
  private InsertionComparator = org.eclipse.text.edits.TextEdit$InsertionComparator of org.eclipse.text.edits.TextEdit