class org.h2.index.TreeNode
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.h2.index.TreeNode
  super_class: java.lang.Object
{
  int balance;
    descriptor: I
    flags: (0x0000) 

  org.h2.index.TreeNode left;
    descriptor: Lorg/h2/index/TreeNode;
    flags: (0x0000) 

  org.h2.index.TreeNode right;
    descriptor: Lorg/h2/index/TreeNode;
    flags: (0x0000) 

  org.h2.index.TreeNode parent;
    descriptor: Lorg/h2/index/TreeNode;
    flags: (0x0000) 

  final org.h2.result.Row row;
    descriptor: Lorg/h2/result/Row;
    flags: (0x0010) ACC_FINAL

  void <init>(org.h2.result.Row);
    descriptor: (Lorg/h2/result/Row;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.index.TreeNode this
        start local 1 // org.h2.result.Row row
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 41
            aload 0 /* this */
            aload 1 /* row */
            putfield org.h2.index.TreeNode.row:Lorg/h2/result/Row;
         2: .line 42
            return
        end local 1 // org.h2.result.Row row
        end local 0 // org.h2.index.TreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/h2/index/TreeNode;
            0    3     1   row  Lorg/h2/result/Row;
    MethodParameters:
      Name  Flags
      row   

  boolean isFromLeft();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.index.TreeNode this
         0: .line 51
            aload 0 /* this */
            getfield org.h2.index.TreeNode.parent:Lorg/h2/index/TreeNode;
            ifnull 1
            aload 0 /* this */
            getfield org.h2.index.TreeNode.parent:Lorg/h2/index/TreeNode;
            getfield org.h2.index.TreeNode.left:Lorg/h2/index/TreeNode;
            aload 0 /* this */
            if_acmpeq 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // org.h2.index.TreeNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/h2/index/TreeNode;
}
SourceFile: "TreeNode.java"