public class org.eclipse.jdt.internal.corext.dom.Selection
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.corext.dom.Selection
  super_class: java.lang.Object
{
  public static final int INTERSECTS;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

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

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

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

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

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

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

  protected void <init>();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
         0: .line 41
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            return
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jdt/internal/corext/dom/Selection;

  public static org.eclipse.jdt.internal.corext.dom.Selection createFromStartLength(int, int);
    descriptor: (II)Lorg/eclipse/jdt/internal/corext/dom/Selection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // int s
        start local 1 // int l
         0: .line 52
            iload 0 /* s */
            iflt 1
            iload 1 /* l */
            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 53
            new org.eclipse.jdt.internal.corext.dom.Selection
            dup
            invokespecial org.eclipse.jdt.internal.corext.dom.Selection.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.jdt.internal.corext.dom.Selection result
         4: .line 54
            aload 2 /* result */
            iload 0 /* s */
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
         5: .line 55
            aload 2 /* result */
            iload 1 /* l */
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fLength:I
         6: .line 56
            aload 2 /* result */
            iload 0 /* s */
            iload 1 /* l */
            iadd
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
         7: .line 57
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.jdt.internal.corext.dom.Selection result
        end local 1 // int l
        end local 0 // int s
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0       s  I
            0    8     1       l  I
            4    8     2  result  Lorg/eclipse/jdt/internal/corext/dom/Selection;
    MethodParameters:
      Name  Flags
      s     
      l     

  public static org.eclipse.jdt.internal.corext.dom.Selection createFromStartEnd(int, int);
    descriptor: (II)Lorg/eclipse/jdt/internal/corext/dom/Selection;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // int s
        start local 1 // int e
         0: .line 68
            iload 0 /* s */
            iflt 1
            iload 1 /* e */
            iload 0 /* s */
            if_icmplt 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 69
            new org.eclipse.jdt.internal.corext.dom.Selection
            dup
            invokespecial org.eclipse.jdt.internal.corext.dom.Selection.<init>:()V
            astore 2 /* result */
        start local 2 // org.eclipse.jdt.internal.corext.dom.Selection result
         4: .line 70
            aload 2 /* result */
            iload 0 /* s */
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
         5: .line 71
            aload 2 /* result */
            iload 1 /* e */
            iload 0 /* s */
            isub
            iconst_1
            iadd
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fLength:I
         6: .line 72
            aload 2 /* result */
            aload 2 /* result */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            aload 2 /* result */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fLength:I
            iadd
            putfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
         7: .line 73
            aload 2 /* result */
            areturn
        end local 2 // org.eclipse.jdt.internal.corext.dom.Selection result
        end local 1 // int e
        end local 0 // int s
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0       s  I
            0    8     1       e  I
            4    8     2  result  Lorg/eclipse/jdt/internal/corext/dom/Selection;
    MethodParameters:
      Name  Flags
      s     
      e     

  public int getOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
         0: .line 77
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/corext/dom/Selection;

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

  public int getInclusiveEnd();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
         0: .line 85
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iconst_1
            isub
            ireturn
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/corext/dom/Selection;

  public int getExclusiveEnd();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
         0: .line 89
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            ireturn
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/corext/dom/Selection;

  public int getVisitSelectionMode(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 106
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 107
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            istore 3 /* nodeEnd */
        start local 3 // int nodeEnd
         2: .line 108
            iload 3 /* nodeEnd */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            if_icmpgt 4
         3: .line 109
            iconst_1
            ireturn
         4: .line 110
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.internal.corext.dom.Selection.covers:(Lorg/eclipse/jdt/core/dom/ASTNode;)Z
            ifeq 6
         5: .line 111
            iconst_2
            ireturn
         6: .line 112
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iload 2 /* nodeStart */
            if_icmpgt 8
         7: .line 113
            iconst_3
            ireturn
         8: .line 114
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int nodeEnd
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    9     1       node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1    9     2  nodeStart  I
            2    9     3    nodeEnd  I
    MethodParameters:
      Name  Flags
      node  

  public int getEndVisitSelectionMode(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 118
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 119
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            istore 3 /* nodeEnd */
        start local 3 // int nodeEnd
         2: .line 120
            iload 3 /* nodeEnd */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            if_icmpgt 4
         3: .line 121
            iconst_1
            ireturn
         4: .line 122
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.internal.corext.dom.Selection.covers:(Lorg/eclipse/jdt/core/dom/ASTNode;)Z
            ifeq 6
         5: .line 123
            iconst_2
            ireturn
         6: .line 124
      StackMap locals:
      StackMap stack:
            iload 3 /* nodeEnd */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            if_icmplt 8
         7: .line 125
            iconst_3
            ireturn
         8: .line 126
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 3 // int nodeEnd
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    9     1       node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1    9     2  nodeStart  I
            2    9     3    nodeEnd  I
    MethodParameters:
      Name  Flags
      node  

  public boolean covers(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // int position
         0: .line 132
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            iload 1 /* position */
            if_icmpgt 1
            iload 1 /* position */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fLength:I
            iadd
            if_icmpge 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // int position
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    2     1  position  I
    MethodParameters:
          Name  Flags
      position  

  public boolean covers(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 136
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 137
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            iload 2 /* nodeStart */
            if_icmpgt 2
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            if_icmpgt 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    3     1       node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1    3     2  nodeStart  I
    MethodParameters:
      Name  Flags
      node  

  public boolean coveredBy(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 141
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 142
            iload 2 /* nodeStart */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            if_icmpgt 2
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            if_icmpgt 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    3     1       node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1    3     2  nodeStart  I
    MethodParameters:
      Name  Flags
      node  

  public boolean coveredBy(org.eclipse.jface.text.IRegion);
    descriptor: (Lorg/eclipse/jface/text/IRegion;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jface.text.IRegion region
         0: .line 146
            aload 1 /* region */
            invokeinterface org.eclipse.jface.text.IRegion.getOffset:()I
            istore 2 /* rangeStart */
        start local 2 // int rangeStart
         1: .line 147
            iload 2 /* rangeStart */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            if_icmpgt 2
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iload 2 /* rangeStart */
            aload 1 /* region */
            invokeinterface org.eclipse.jface.text.IRegion.getLength:()I
            iadd
            if_icmpgt 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int rangeStart
        end local 1 // org.eclipse.jface.text.IRegion region
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    3     1      region  Lorg/eclipse/jface/text/IRegion;
            1    3     2  rangeStart  I
    MethodParameters:
        Name  Flags
      region  

  public boolean endsIn(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 151
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 152
            iload 2 /* nodeStart */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            if_icmpge 2
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            if_icmpge 2
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0    3     1       node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1    3     2  nodeStart  I
    MethodParameters:
      Name  Flags
      node  

  public boolean liesOutside(org.eclipse.jdt.core.dom.ASTNode);
    descriptor: (Lorg/eclipse/jdt/core/dom/ASTNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
        start local 1 // org.eclipse.jdt.core.dom.ASTNode node
         0: .line 156
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getStartPosition:()I
            istore 2 /* nodeStart */
        start local 2 // int nodeStart
         1: .line 157
            iload 2 /* nodeStart */
            aload 1 /* node */
            invokevirtual org.eclipse.jdt.core.dom.ASTNode.getLength:()I
            iadd
            istore 3 /* nodeEnd */
        start local 3 // int nodeEnd
         2: .line 158
            iload 3 /* nodeEnd */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            if_icmpge 3
            iconst_1
            goto 4
      StackMap locals: int int
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* nodeBeforeSelection */
        start local 4 // boolean nodeBeforeSelection
         5: .line 159
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fExclusiveEnd:I
            iload 2 /* nodeStart */
            if_icmpge 6
            iconst_1
            goto 7
      StackMap locals: int
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 5 /* selectionBeforeNode */
        start local 5 // boolean selectionBeforeNode
         8: .line 160
            iload 4 /* nodeBeforeSelection */
            ifne 9
            iload 5 /* selectionBeforeNode */
            ifne 9
            iconst_0
            ireturn
      StackMap locals: int
      StackMap stack:
         9: iconst_1
            ireturn
        end local 5 // boolean selectionBeforeNode
        end local 4 // boolean nodeBeforeSelection
        end local 3 // int nodeEnd
        end local 2 // int nodeStart
        end local 1 // org.eclipse.jdt.core.dom.ASTNode node
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   10     0                 this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
            0   10     1                 node  Lorg/eclipse/jdt/core/dom/ASTNode;
            1   10     2            nodeStart  I
            2   10     3              nodeEnd  I
            5   10     4  nodeBeforeSelection  Z
            8   10     5  selectionBeforeNode  Z
    MethodParameters:
      Name  Flags
      node  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
         0: .line 165
            new java.lang.StringBuilder
            dup
            ldc "<start == "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fStart:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", length == "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.corext.dom.Selection.fLength:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc "/>"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jdt.internal.corext.dom.Selection this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/corext/dom/Selection;
}
SourceFile: "Selection.java"