public final class org.eclipse.text.edits.TextEditCopier
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.eclipse.text.edits.TextEditCopier
  super_class: java.lang.Object
{
  private org.eclipse.text.edits.TextEdit fEdit;
    descriptor: Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0002) ACC_PRIVATE

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

  public void <init>(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEditCopier this
        start local 1 // org.eclipse.text.edits.TextEdit edit
         0: .line 46
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 1 /* edit */
            invokestatic org.eclipse.core.runtime.Assert.isNotNull:(Ljava/lang/Object;)V
         2: .line 48
            aload 0 /* this */
            aload 1 /* edit */
            putfield org.eclipse.text.edits.TextEditCopier.fEdit:Lorg/eclipse/text/edits/TextEdit;
         3: .line 49
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield org.eclipse.text.edits.TextEditCopier.fCopies:Ljava/util/Map;
         4: .line 50
            return
        end local 1 // org.eclipse.text.edits.TextEdit edit
        end local 0 // org.eclipse.text.edits.TextEditCopier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/eclipse/text/edits/TextEditCopier;
            0    5     1  edit  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
      Name  Flags
      edit  

  public org.eclipse.text.edits.TextEdit perform();
    descriptor: ()Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.eclipse.text.edits.TextEditCopier this
         0: .line 58
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEditCopier.fEdit:Lorg/eclipse/text/edits/TextEdit;
            invokevirtual org.eclipse.text.edits.TextEditCopier.doCopy:(Lorg/eclipse/text/edits/TextEdit;)Lorg/eclipse/text/edits/TextEdit;
            astore 1 /* result */
        start local 1 // org.eclipse.text.edits.TextEdit result
         1: .line 59
            aload 1 /* result */
            ifnull 6
         2: .line 60
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEditCopier.fCopies:Ljava/util/Map;
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.eclipse.text.edits.TextEditCopier org.eclipse.text.edits.TextEdit 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 /* edit */
        start local 2 // org.eclipse.text.edits.TextEdit edit
         4: .line 61
            aload 2 /* edit */
            aload 0 /* this */
            invokevirtual org.eclipse.text.edits.TextEdit.postProcessCopy:(Lorg/eclipse/text/edits/TextEditCopier;)V
        end local 2 // org.eclipse.text.edits.TextEdit edit
         5: .line 60
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 64
      StackMap locals: org.eclipse.text.edits.TextEditCopier org.eclipse.text.edits.TextEdit
      StackMap stack:
            aload 1 /* result */
            areturn
        end local 1 // org.eclipse.text.edits.TextEdit result
        end local 0 // org.eclipse.text.edits.TextEditCopier this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lorg/eclipse/text/edits/TextEditCopier;
            1    7     1  result  Lorg/eclipse/text/edits/TextEdit;
            4    5     2    edit  Lorg/eclipse/text/edits/TextEdit;

  public org.eclipse.text.edits.TextEdit getCopy(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.text.edits.TextEditCopier this
        start local 1 // org.eclipse.text.edits.TextEdit original
         0: .line 76
            aload 1 /* original */
            invokestatic org.eclipse.core.runtime.Assert.isNotNull:(Ljava/lang/Object;)V
         1: .line 77
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEditCopier.fCopies:Ljava/util/Map;
            aload 1 /* original */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            areturn
        end local 1 // org.eclipse.text.edits.TextEdit original
        end local 0 // org.eclipse.text.edits.TextEditCopier this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/text/edits/TextEditCopier;
            0    2     1  original  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
          Name  Flags
      original  

  private org.eclipse.text.edits.TextEdit doCopy(org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;)Lorg/eclipse/text/edits/TextEdit;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // org.eclipse.text.edits.TextEditCopier this
        start local 1 // org.eclipse.text.edits.TextEdit edit
         0: .line 83
            aload 1 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.doCopy:()Lorg/eclipse/text/edits/TextEdit;
            astore 2 /* result */
        start local 2 // org.eclipse.text.edits.TextEdit result
         1: .line 84
            aload 1 /* edit */
            invokevirtual org.eclipse.text.edits.TextEdit.internalGetChildren:()Ljava/util/List;
            astore 3 /* children */
        start local 3 // java.util.List children
         2: .line 85
            aload 3 /* children */
            ifnull 11
         3: .line 86
            new java.util.ArrayList
            dup
            aload 3 /* children */
            invokeinterface java.util.List.size:()I
            invokespecial java.util.ArrayList.<init>:(I)V
            astore 4 /* newChildren */
        start local 4 // java.util.List newChildren
         4: .line 87
            aload 3 /* children */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 9
      StackMap locals: org.eclipse.text.edits.TextEditCopier org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEdit java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         5: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.eclipse.text.edits.TextEdit
            astore 5 /* textEdit */
        start local 5 // org.eclipse.text.edits.TextEdit textEdit
         6: .line 88
            aload 0 /* this */
            aload 5 /* textEdit */
            invokevirtual org.eclipse.text.edits.TextEditCopier.doCopy:(Lorg/eclipse/text/edits/TextEdit;)Lorg/eclipse/text/edits/TextEdit;
            astore 7 /* childCopy */
        start local 7 // org.eclipse.text.edits.TextEdit childCopy
         7: .line 89
            aload 7 /* childCopy */
            aload 2 /* result */
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetParent:(Lorg/eclipse/text/edits/TextEdit;)V
         8: .line 90
            aload 4 /* newChildren */
            aload 7 /* childCopy */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 7 // org.eclipse.text.edits.TextEdit childCopy
        end local 5 // org.eclipse.text.edits.TextEdit textEdit
         9: .line 87
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 5
        10: .line 92
            aload 2 /* result */
            aload 4 /* newChildren */
            invokevirtual org.eclipse.text.edits.TextEdit.internalSetChildren:(Ljava/util/List;)V
        end local 4 // java.util.List newChildren
        11: .line 94
      StackMap locals: org.eclipse.text.edits.TextEditCopier org.eclipse.text.edits.TextEdit org.eclipse.text.edits.TextEdit java.util.List
      StackMap stack:
            aload 0 /* this */
            aload 1 /* edit */
            aload 2 /* result */
            invokevirtual org.eclipse.text.edits.TextEditCopier.addCopy:(Lorg/eclipse/text/edits/TextEdit;Lorg/eclipse/text/edits/TextEdit;)V
        12: .line 95
            aload 2 /* result */
            areturn
        end local 3 // java.util.List children
        end local 2 // org.eclipse.text.edits.TextEdit result
        end local 1 // org.eclipse.text.edits.TextEdit edit
        end local 0 // org.eclipse.text.edits.TextEditCopier this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lorg/eclipse/text/edits/TextEditCopier;
            0   13     1         edit  Lorg/eclipse/text/edits/TextEdit;
            1   13     2       result  Lorg/eclipse/text/edits/TextEdit;
            2   13     3     children  Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;
            4   11     4  newChildren  Ljava/util/List<Lorg/eclipse/text/edits/TextEdit;>;
            6    9     5     textEdit  Lorg/eclipse/text/edits/TextEdit;
            7    9     7    childCopy  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
      Name  Flags
      edit  

  private void addCopy(org.eclipse.text.edits.TextEdit, org.eclipse.text.edits.TextEdit);
    descriptor: (Lorg/eclipse/text/edits/TextEdit;Lorg/eclipse/text/edits/TextEdit;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.text.edits.TextEditCopier this
        start local 1 // org.eclipse.text.edits.TextEdit original
        start local 2 // org.eclipse.text.edits.TextEdit copy
         0: .line 99
            aload 0 /* this */
            getfield org.eclipse.text.edits.TextEditCopier.fCopies:Ljava/util/Map;
            aload 1 /* original */
            aload 2 /* copy */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 100
            return
        end local 2 // org.eclipse.text.edits.TextEdit copy
        end local 1 // org.eclipse.text.edits.TextEdit original
        end local 0 // org.eclipse.text.edits.TextEditCopier this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/text/edits/TextEditCopier;
            0    2     1  original  Lorg/eclipse/text/edits/TextEdit;
            0    2     2      copy  Lorg/eclipse/text/edits/TextEdit;
    MethodParameters:
          Name  Flags
      original  
      copy      
}
SourceFile: "TextEditCopier.java"