public class sun.jvm.hotspot.utilities.IntervalTree extends sun.jvm.hotspot.utilities.RBTree
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: sun.jvm.hotspot.utilities.IntervalTree
  super_class: sun.jvm.hotspot.utilities.RBTree
{
  private java.util.Comparator endpointComparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0002) ACC_PRIVATE

  public void <init>(java.util.Comparator);
    descriptor: (Ljava/util/Comparator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // java.util.Comparator endpointComparator
         0: .line 41
            aload 0 /* this */
            new sun.jvm.hotspot.utilities.IntervalTree$IntervalComparator
            dup
            aload 1 /* endpointComparator */
            invokespecial sun.jvm.hotspot.utilities.IntervalTree$IntervalComparator.<init>:(Ljava/util/Comparator;)V
            invokespecial sun.jvm.hotspot.utilities.RBTree.<init>:(Ljava/util/Comparator;)V
         1: .line 42
            aload 0 /* this */
            aload 1 /* endpointComparator */
            putfield sun.jvm.hotspot.utilities.IntervalTree.endpointComparator:Ljava/util/Comparator;
         2: .line 43
            return
        end local 1 // java.util.Comparator endpointComparator
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    3     0                this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0    3     1  endpointComparator  Ljava/util/Comparator;
    MethodParameters:
                    Name  Flags
      endpointComparator  

  public void insert(sun.jvm.hotspot.utilities.Interval, java.lang.Object);
    descriptor: (Lsun/jvm/hotspot/utilities/Interval;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.Interval interval
        start local 2 // java.lang.Object data
         0: .line 46
            new sun.jvm.hotspot.utilities.IntervalNode
            dup
            aload 1 /* interval */
            aload 0 /* this */
            getfield sun.jvm.hotspot.utilities.IntervalTree.endpointComparator:Ljava/util/Comparator;
            aload 2 /* data */
            invokespecial sun.jvm.hotspot.utilities.IntervalNode.<init>:(Lsun/jvm/hotspot/utilities/Interval;Ljava/util/Comparator;Ljava/lang/Object;)V
            astore 3 /* node */
        start local 3 // sun.jvm.hotspot.utilities.IntervalNode node
         1: .line 47
            aload 0 /* this */
            aload 3 /* node */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.insertNode:(Lsun/jvm/hotspot/utilities/RBNode;)V
         2: .line 48
            return
        end local 3 // sun.jvm.hotspot.utilities.IntervalNode node
        end local 2 // java.lang.Object data
        end local 1 // sun.jvm.hotspot.utilities.Interval interval
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0    3     1  interval  Lsun/jvm/hotspot/utilities/Interval;
            0    3     2      data  Ljava/lang/Object;
            1    3     3      node  Lsun/jvm/hotspot/utilities/IntervalNode;
    MethodParameters:
          Name  Flags
      interval  
      data      

  public java.util.List findAllNodesIntersecting(sun.jvm.hotspot.utilities.Interval);
    descriptor: (Lsun/jvm/hotspot/utilities/Interval;)Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.Interval interval
         0: .line 55
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* retList */
        start local 2 // java.util.List retList
         1: .line 56
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.getRoot:()Lsun/jvm/hotspot/utilities/RBNode;
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            aload 1 /* interval */
            aload 2 /* retList */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.searchForIntersectingNodesFrom:(Lsun/jvm/hotspot/utilities/IntervalNode;Lsun/jvm/hotspot/utilities/Interval;Ljava/util/List;)V
         2: .line 57
            aload 2 /* retList */
            areturn
        end local 2 // java.util.List retList
        end local 1 // sun.jvm.hotspot.utilities.Interval interval
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0    3     1  interval  Lsun/jvm/hotspot/utilities/Interval;
            1    3     2   retList  Ljava/util/List;
    MethodParameters:
          Name  Flags
      interval  

  public void print();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
         0: .line 61
            aload 0 /* this */
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.printOn:(Ljava/io/PrintStream;)V
         1: .line 62
            return
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/utilities/IntervalTree;

  public void printOn(java.io.PrintStream);
    descriptor: (Ljava/io/PrintStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // java.io.PrintStream tty
         0: .line 65
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.getRoot:()Lsun/jvm/hotspot/utilities/RBNode;
            aload 1 /* tty */
            iconst_0
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.printFromNode:(Lsun/jvm/hotspot/utilities/RBNode;Ljava/io/PrintStream;I)V
         1: .line 66
            return
        end local 1 // java.io.PrintStream tty
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0    2     1   tty  Ljava/io/PrintStream;
    MethodParameters:
      Name  Flags
      tty   

  protected java.lang.Object getNodeValue(sun.jvm.hotspot.utilities.RBNode);
    descriptor: (Lsun/jvm/hotspot/utilities/RBNode;)Ljava/lang/Object;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.RBNode node
         0: .line 72
            aload 1 /* node */
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getInterval:()Lsun/jvm/hotspot/utilities/Interval;
            areturn
        end local 1 // sun.jvm.hotspot.utilities.RBNode node
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0    1     1  node  Lsun/jvm/hotspot/utilities/RBNode;
    MethodParameters:
      Name  Flags
      node  

  protected void verify();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
         0: .line 76
            aload 0 /* this */
            invokespecial sun.jvm.hotspot.utilities.RBTree.verify:()V
         1: .line 77
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.getRoot:()Lsun/jvm/hotspot/utilities/RBNode;
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.verifyFromNode:(Lsun/jvm/hotspot/utilities/RBNode;)V
         2: .line 78
            return
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lsun/jvm/hotspot/utilities/IntervalTree;

  private void verifyFromNode(sun.jvm.hotspot.utilities.RBNode);
    descriptor: (Lsun/jvm/hotspot/utilities/RBNode;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.RBNode node
         0: .line 85
            aload 1 /* node */
            ifnonnull 2
         1: .line 86
            return
         2: .line 93
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            astore 2 /* intNode */
        start local 2 // sun.jvm.hotspot.utilities.IntervalNode intNode
         3: .line 94
            aload 2 /* intNode */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMaxEndpoint:()Ljava/lang/Object;
            aload 2 /* intNode */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.computeMaxEndpoint:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 6
         4: .line 96
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.print:()V
         5: .line 98
            new java.lang.RuntimeException
            dup
            ldc "Node's max endpoint was not updated properly"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 100
      StackMap locals: sun.jvm.hotspot.utilities.IntervalNode
      StackMap stack:
            aload 2 /* intNode */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMinEndpoint:()Ljava/lang/Object;
            aload 2 /* intNode */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.computeMinEndpoint:()Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 9
         7: .line 102
            aload 0 /* this */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.print:()V
         8: .line 104
            new java.lang.RuntimeException
            dup
            ldc "Node's min endpoint was not updated properly"
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getLeft:()Lsun/jvm/hotspot/utilities/RBNode;
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.verifyFromNode:(Lsun/jvm/hotspot/utilities/RBNode;)V
        10: .line 108
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getRight:()Lsun/jvm/hotspot/utilities/RBNode;
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.verifyFromNode:(Lsun/jvm/hotspot/utilities/RBNode;)V
        11: .line 109
            return
        end local 2 // sun.jvm.hotspot.utilities.IntervalNode intNode
        end local 1 // sun.jvm.hotspot.utilities.RBNode node
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0   12     1     node  Lsun/jvm/hotspot/utilities/RBNode;
            3   12     2  intNode  Lsun/jvm/hotspot/utilities/IntervalNode;
    MethodParameters:
      Name  Flags
      node  

  private void searchForIntersectingNodesFrom(sun.jvm.hotspot.utilities.IntervalNode, sun.jvm.hotspot.utilities.Interval, java.util.List);
    descriptor: (Lsun/jvm/hotspot/utilities/IntervalNode;Lsun/jvm/hotspot/utilities/Interval;Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.IntervalNode node
        start local 2 // sun.jvm.hotspot.utilities.Interval interval
        start local 3 // java.util.List resultList
         0: .line 128
            aload 1 /* node */
            ifnonnull 2
         1: .line 129
            return
         2: .line 135
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getLeft:()Lsun/jvm/hotspot/utilities/RBNode;
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            astore 4 /* left */
        start local 4 // sun.jvm.hotspot.utilities.IntervalNode left
         3: .line 136
            aload 4 /* left */
            ifnull 8
         4: .line 137
            aload 0 /* this */
            getfield sun.jvm.hotspot.utilities.IntervalTree.endpointComparator:Ljava/util/Comparator;
            aload 4 /* left */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMaxEndpoint:()Ljava/lang/Object;
         5: .line 138
            aload 2 /* interval */
            invokevirtual sun.jvm.hotspot.utilities.Interval.getLowEndpoint:()Ljava/lang/Object;
         6: .line 137
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 8
         7: .line 139
            aload 0 /* this */
            aload 4 /* left */
            aload 2 /* interval */
            aload 3 /* resultList */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.searchForIntersectingNodesFrom:(Lsun/jvm/hotspot/utilities/IntervalNode;Lsun/jvm/hotspot/utilities/Interval;Ljava/util/List;)V
         8: .line 143
      StackMap locals: sun.jvm.hotspot.utilities.IntervalNode
      StackMap stack:
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getInterval:()Lsun/jvm/hotspot/utilities/Interval;
            aload 2 /* interval */
            aload 0 /* this */
            getfield sun.jvm.hotspot.utilities.IntervalTree.endpointComparator:Ljava/util/Comparator;
            invokevirtual sun.jvm.hotspot.utilities.Interval.overlaps:(Lsun/jvm/hotspot/utilities/Interval;Ljava/util/Comparator;)Z
            ifeq 10
         9: .line 144
            aload 3 /* resultList */
            aload 1 /* node */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        10: .line 148
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getRight:()Lsun/jvm/hotspot/utilities/RBNode;
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            astore 5 /* right */
        start local 5 // sun.jvm.hotspot.utilities.IntervalNode right
        11: .line 149
            aload 5 /* right */
            ifnull 16
        12: .line 150
            aload 0 /* this */
            getfield sun.jvm.hotspot.utilities.IntervalTree.endpointComparator:Ljava/util/Comparator;
            aload 2 /* interval */
            invokevirtual sun.jvm.hotspot.utilities.Interval.getHighEndpoint:()Ljava/lang/Object;
        13: .line 151
            aload 5 /* right */
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMinEndpoint:()Ljava/lang/Object;
        14: .line 150
            invokeinterface java.util.Comparator.compare:(Ljava/lang/Object;Ljava/lang/Object;)I
            ifle 16
        15: .line 152
            aload 0 /* this */
            aload 5 /* right */
            aload 2 /* interval */
            aload 3 /* resultList */
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.searchForIntersectingNodesFrom:(Lsun/jvm/hotspot/utilities/IntervalNode;Lsun/jvm/hotspot/utilities/Interval;Ljava/util/List;)V
        16: .line 154
      StackMap locals: sun.jvm.hotspot.utilities.IntervalNode
      StackMap stack:
            return
        end local 5 // sun.jvm.hotspot.utilities.IntervalNode right
        end local 4 // sun.jvm.hotspot.utilities.IntervalNode left
        end local 3 // java.util.List resultList
        end local 2 // sun.jvm.hotspot.utilities.Interval interval
        end local 1 // sun.jvm.hotspot.utilities.IntervalNode node
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0   17     1        node  Lsun/jvm/hotspot/utilities/IntervalNode;
            0   17     2    interval  Lsun/jvm/hotspot/utilities/Interval;
            0   17     3  resultList  Ljava/util/List;
            3   17     4        left  Lsun/jvm/hotspot/utilities/IntervalNode;
           11   17     5       right  Lsun/jvm/hotspot/utilities/IntervalNode;
    MethodParameters:
            Name  Flags
      node        
      interval    
      resultList  

  private void printFromNode(sun.jvm.hotspot.utilities.RBNode, java.io.PrintStream, int);
    descriptor: (Lsun/jvm/hotspot/utilities/RBNode;Ljava/io/PrintStream;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // sun.jvm.hotspot.utilities.IntervalTree this
        start local 1 // sun.jvm.hotspot.utilities.RBNode node
        start local 2 // java.io.PrintStream tty
        start local 3 // int indentDepth
         0: .line 158
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         1: goto 4
         2: .line 159
      StackMap locals: int
      StackMap stack:
            aload 2 /* tty */
            ldc " "
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         3: .line 158
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         4: iload 4 /* i */
            iload 3 /* indentDepth */
            if_icmplt 2
        end local 4 // int i
         5: .line 162
            aload 2 /* tty */
            ldc "-"
            invokevirtual java.io.PrintStream.print:(Ljava/lang/String;)V
         6: .line 163
            aload 1 /* node */
            ifnonnull 9
         7: .line 164
            aload 2 /* tty */
            invokevirtual java.io.PrintStream.println:()V
         8: .line 165
            return
         9: .line 168
      StackMap locals:
      StackMap stack:
            aload 2 /* tty */
            new java.lang.StringBuilder
            dup
            ldc " "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 1 /* node */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        10: .line 169
            ldc " (min "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* node */
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMinEndpoint:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
        11: .line 170
            ldc ", max "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 1 /* node */
            checkcast sun.jvm.hotspot.utilities.IntervalNode
            invokevirtual sun.jvm.hotspot.utilities.IntervalNode.getMaxEndpoint:()Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        12: .line 171
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getColor:()Lsun/jvm/hotspot/utilities/RBColor;
            getstatic sun.jvm.hotspot.utilities.RBColor.RED:Lsun/jvm/hotspot/utilities/RBColor;
            if_acmpne 13
            ldc " (red)"
            goto 14
      StackMap locals: sun.jvm.hotspot.utilities.IntervalTree sun.jvm.hotspot.utilities.RBNode java.io.PrintStream int
      StackMap stack: java.io.PrintStream java.lang.StringBuilder
        13: ldc " (black)"
      StackMap locals: sun.jvm.hotspot.utilities.IntervalTree sun.jvm.hotspot.utilities.RBNode java.io.PrintStream int
      StackMap stack: java.io.PrintStream java.lang.StringBuilder java.lang.String
        14: invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        15: .line 168
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
        16: .line 172
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getLeft:()Lsun/jvm/hotspot/utilities/RBNode;
            ifnull 17
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getLeft:()Lsun/jvm/hotspot/utilities/RBNode;
            aload 2 /* tty */
            iload 3 /* indentDepth */
            iconst_2
            iadd
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.printFromNode:(Lsun/jvm/hotspot/utilities/RBNode;Ljava/io/PrintStream;I)V
        17: .line 173
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getRight:()Lsun/jvm/hotspot/utilities/RBNode;
            ifnull 18
            aload 0 /* this */
            aload 1 /* node */
            invokevirtual sun.jvm.hotspot.utilities.RBNode.getRight:()Lsun/jvm/hotspot/utilities/RBNode;
            aload 2 /* tty */
            iload 3 /* indentDepth */
            iconst_2
            iadd
            invokevirtual sun.jvm.hotspot.utilities.IntervalTree.printFromNode:(Lsun/jvm/hotspot/utilities/RBNode;Ljava/io/PrintStream;I)V
        18: .line 174
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int indentDepth
        end local 2 // java.io.PrintStream tty
        end local 1 // sun.jvm.hotspot.utilities.RBNode node
        end local 0 // sun.jvm.hotspot.utilities.IntervalTree this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Lsun/jvm/hotspot/utilities/IntervalTree;
            0   19     1         node  Lsun/jvm/hotspot/utilities/RBNode;
            0   19     2          tty  Ljava/io/PrintStream;
            0   19     3  indentDepth  I
            1    5     4            i  I
    MethodParameters:
             Name  Flags
      node         
      tty          
      indentDepth  
}
SourceFile: "IntervalTree.java"
NestMembers:
  sun.jvm.hotspot.utilities.IntervalTree$IntervalComparator
InnerClasses:
  IntervalComparator = sun.jvm.hotspot.utilities.IntervalTree$IntervalComparator of sun.jvm.hotspot.utilities.IntervalTree