public class org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier implements org.eclipse.text.edits.ISourceModifier
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier
  super_class: java.lang.Object
{
  private final java.lang.String destinationIndent;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int sourceIndentLevel;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int tabWidth;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int indentWidth;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(int, java.lang.String, int, int);
    descriptor: (ILjava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
        start local 1 // int sourceIndentLevel
        start local 2 // java.lang.String destinationIndent
        start local 3 // int tabWidth
        start local 4 // int indentWidth
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 2 /* destinationIndent */
            putfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.destinationIndent:Ljava/lang/String;
         2: .line 34
            aload 0 /* this */
            iload 1 /* sourceIndentLevel */
            putfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.sourceIndentLevel:I
         3: .line 35
            aload 0 /* this */
            iload 3 /* tabWidth */
            putfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.tabWidth:I
         4: .line 36
            aload 0 /* this */
            iload 4 /* indentWidth */
            putfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.indentWidth:I
         5: .line 37
            return
        end local 4 // int indentWidth
        end local 3 // int tabWidth
        end local 2 // java.lang.String destinationIndent
        end local 1 // int sourceIndentLevel
        end local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    6     0               this  Lorg/eclipse/jdt/internal/core/dom/rewrite/SourceModifier;
            0    6     1  sourceIndentLevel  I
            0    6     2  destinationIndent  Ljava/lang/String;
            0    6     3           tabWidth  I
            0    6     4        indentWidth  I
    MethodParameters:
                   Name  Flags
      sourceIndentLevel  
      destinationIndent  
      tabWidth           
      indentWidth        

  public org.eclipse.text.edits.ISourceModifier copy();
    descriptor: ()Lorg/eclipse/text/edits/ISourceModifier;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
         0: .line 42
            aload 0 /* this */
            areturn
        end local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/core/dom/rewrite/SourceModifier;

  public org.eclipse.text.edits.ReplaceEdit[] getModifications(java.lang.String);
    descriptor: (Ljava/lang/String;)[Lorg/eclipse/text/edits/ReplaceEdit;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
        start local 1 // java.lang.String source
         0: .line 47
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* result */
        start local 2 // java.util.List result
         1: .line 48
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.destinationIndent:Ljava/lang/String;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.tabWidth:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.indentWidth:I
            invokestatic org.eclipse.jdt.core.formatter.IndentManipulation.measureIndentUnits:(Ljava/lang/CharSequence;II)I
            istore 3 /* destIndentLevel */
        start local 3 // int destIndentLevel
         2: .line 49
            iload 3 /* destIndentLevel */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.sourceIndentLevel:I
            if_icmpne 4
         3: .line 50
            aload 2 /* result */
            aload 2 /* result */
            invokeinterface java.util.List.size:()I
            anewarray org.eclipse.text.edits.ReplaceEdit
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            checkcast org.eclipse.text.edits.ReplaceEdit[]
            areturn
         4: .line 52
      StackMap locals: java.util.List int
      StackMap stack:
            aload 1 /* source */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.sourceIndentLevel:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.tabWidth:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.indentWidth:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier.destinationIndent:Ljava/lang/String;
            invokestatic org.eclipse.jdt.core.formatter.IndentManipulation.getChangeIndentEdits:(Ljava/lang/String;IIILjava/lang/String;)[Lorg/eclipse/text/edits/ReplaceEdit;
            areturn
        end local 3 // int destIndentLevel
        end local 2 // java.util.List result
        end local 1 // java.lang.String source
        end local 0 // org.eclipse.jdt.internal.core.dom.rewrite.SourceModifier this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    5     0             this  Lorg/eclipse/jdt/internal/core/dom/rewrite/SourceModifier;
            0    5     1           source  Ljava/lang/String;
            1    5     2           result  Ljava/util/List;
            2    5     3  destIndentLevel  I
    MethodParameters:
        Name  Flags
      source  
}
SourceFile: "SourceModifier.java"