public class com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl implements org.w3c.dom.traversal.TreeWalker
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl
  super_class: java.lang.Object
{
  private boolean fEntityReferenceExpansion;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  int fWhatToShow;
    descriptor: I
    flags: (0x0000) 

  org.w3c.dom.traversal.NodeFilter fNodeFilter;
    descriptor: Lorg/w3c/dom/traversal/NodeFilter;
    flags: (0x0000) 

  org.w3c.dom.Node fCurrentNode;
    descriptor: Lorg/w3c/dom/Node;
    flags: (0x0000) 

  org.w3c.dom.Node fRoot;
    descriptor: Lorg/w3c/dom/Node;
    flags: (0x0000) 

  public void <init>(org.w3c.dom.Node, int, org.w3c.dom.traversal.NodeFilter, boolean);
    descriptor: (Lorg/w3c/dom/Node;ILorg/w3c/dom/traversal/NodeFilter;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=5
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node root
        start local 2 // int whatToShow
        start local 3 // org.w3c.dom.traversal.NodeFilter nodeFilter
        start local 4 // boolean entityReferenceExpansion
         0: .line 64
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 42
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fEntityReferenceExpansion:Z
         2: .line 44
            aload 0 /* this */
            iconst_m1
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
         3: .line 68
            aload 0 /* this */
            aload 1 /* root */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 69
            aload 0 /* this */
            aload 1 /* root */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fRoot:Lorg/w3c/dom/Node;
         5: .line 70
            aload 0 /* this */
            iload 2 /* whatToShow */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
         6: .line 71
            aload 0 /* this */
            aload 3 /* nodeFilter */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fNodeFilter:Lorg/w3c/dom/traversal/NodeFilter;
         7: .line 72
            aload 0 /* this */
            iload 4 /* entityReferenceExpansion */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fEntityReferenceExpansion:Z
         8: .line 73
            return
        end local 4 // boolean entityReferenceExpansion
        end local 3 // org.w3c.dom.traversal.NodeFilter nodeFilter
        end local 2 // int whatToShow
        end local 1 // org.w3c.dom.Node root
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot                      Name  Signature
            0    9     0                      this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    9     1                      root  Lorg/w3c/dom/Node;
            0    9     2                whatToShow  I
            0    9     3                nodeFilter  Lorg/w3c/dom/traversal/NodeFilter;
            0    9     4  entityReferenceExpansion  Z
    MethodParameters:
                          Name  Flags
      root                      
      whatToShow                
      nodeFilter                
      entityReferenceExpansion  

  public org.w3c.dom.Node getRoot();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 76
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fRoot:Lorg/w3c/dom/Node;
            areturn
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;

  public int getWhatToShow();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 81
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;

  public void setWhatShow(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // int whatToShow
         0: .line 85
            aload 0 /* this */
            iload 1 /* whatToShow */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
         1: .line 86
            return
        end local 1 // int whatToShow
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    2     1  whatToShow  I
    MethodParameters:
            Name  Flags
      whatToShow  

  public org.w3c.dom.traversal.NodeFilter getFilter();
    descriptor: ()Lorg/w3c/dom/traversal/NodeFilter;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 89
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fNodeFilter:Lorg/w3c/dom/traversal/NodeFilter;
            areturn
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;

  public boolean getExpandEntityReferences();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 94
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fEntityReferenceExpansion:Z
            ireturn
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;

  public org.w3c.dom.Node getCurrentNode();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 99
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            areturn
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;

  public void setCurrentNode(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 103
            aload 1 /* node */
            ifnonnull 3
         1: .line 104
            ldc "http://www.w3.org/dom/DOMTR"
            ldc "NOT_SUPPORTED_ERR"
            aconst_null
            invokestatic com.sun.org.apache.xerces.internal.dom.DOMMessageFormatter.formatMessage:(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 2 /* msg */
        start local 2 // java.lang.String msg
         2: .line 105
            new org.w3c.dom.DOMException
            dup
            bipush 9
            aload 2 /* msg */
            invokespecial org.w3c.dom.DOMException.<init>:(SLjava/lang/String;)V
            athrow
        end local 2 // java.lang.String msg
         3: .line 108
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 109
            return
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    5     1  node  Lorg/w3c/dom/Node;
            2    3     2   msg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      node  

  public org.w3c.dom.Node parentNode();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 117
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getParentNode:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* node */
        start local 1 // org.w3c.dom.Node node
         2: .line 120
            aload 1 /* node */
            ifnull 4
         3: .line 121
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 123
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 1 /* node */
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2    5     1  node  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node firstChild();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 133
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getFirstChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* node */
        start local 1 // org.w3c.dom.Node node
         2: .line 136
            aload 1 /* node */
            ifnull 4
         3: .line 137
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 139
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 1 /* node */
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2    5     1  node  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node lastChild();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 147
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getLastChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* node */
        start local 1 // org.w3c.dom.Node node
         2: .line 150
            aload 1 /* node */
            ifnull 4
         3: .line 151
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 153
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 1 /* node */
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2    5     1  node  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node previousSibling();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 162
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 164
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* node */
        start local 1 // org.w3c.dom.Node node
         2: .line 165
            aload 1 /* node */
            ifnull 4
         3: .line 166
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 168
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 1 /* node */
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2    5     1  node  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node nextSibling();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 176
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 178
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* node */
        start local 1 // org.w3c.dom.Node node
         2: .line 179
            aload 1 /* node */
            ifnull 4
         3: .line 180
            aload 0 /* this */
            aload 1 /* node */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 182
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 1 /* node */
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2    5     1  node  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node previousNode();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 192
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* result */
        start local 1 // org.w3c.dom.Node result
         2: .line 196
            aload 1 /* result */
            ifnonnull 8
         3: .line 197
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getParentNode:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* result */
         4: .line 198
            aload 1 /* result */
            ifnull 7
         5: .line 199
            aload 0 /* this */
            aload 1 /* result */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         6: .line 200
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            areturn
         7: .line 202
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aconst_null
            areturn
         8: .line 206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* result */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getLastChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 2 /* lastChild */
        start local 2 // org.w3c.dom.Node lastChild
         9: .line 208
            aload 2 /* lastChild */
            astore 3 /* prev */
        start local 3 // org.w3c.dom.Node prev
        10: .line 209
            goto 13
        11: .line 210
      StackMap locals: org.w3c.dom.Node org.w3c.dom.Node
      StackMap stack:
            aload 2 /* lastChild */
            astore 3 /* prev */
        12: .line 211
            aload 0 /* this */
            aload 3 /* prev */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getLastChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 2 /* lastChild */
        13: .line 209
      StackMap locals:
      StackMap stack:
            aload 2 /* lastChild */
            ifnonnull 11
        14: .line 214
            aload 3 /* prev */
            astore 2 /* lastChild */
        15: .line 217
            aload 2 /* lastChild */
            ifnull 18
        16: .line 218
            aload 0 /* this */
            aload 2 /* lastChild */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
        17: .line 219
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            areturn
        18: .line 223
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            ifnull 21
        19: .line 224
            aload 0 /* this */
            aload 1 /* result */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
        20: .line 225
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            areturn
        21: .line 229
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 3 // org.w3c.dom.Node prev
        end local 2 // org.w3c.dom.Node lastChild
        end local 1 // org.w3c.dom.Node result
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   22     0       this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2   22     1     result  Lorg/w3c/dom/Node;
            9   22     2  lastChild  Lorg/w3c/dom/Node;
           10   22     3       prev  Lorg/w3c/dom/Node;

  public org.w3c.dom.Node nextNode();
    descriptor: ()Lorg/w3c/dom/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
         0: .line 238
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            ifnonnull 1
            aconst_null
            areturn
         1: .line 240
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getFirstChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* result */
        start local 1 // org.w3c.dom.Node result
         2: .line 242
            aload 1 /* result */
            ifnull 5
         3: .line 243
            aload 0 /* this */
            aload 1 /* result */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         4: .line 244
            aload 1 /* result */
            areturn
         5: .line 247
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* result */
         6: .line 249
            aload 1 /* result */
            ifnull 9
         7: .line 250
            aload 0 /* this */
            aload 1 /* result */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
         8: .line 251
            aload 1 /* result */
            areturn
         9: .line 255
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getParentNode:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 2 /* parent */
        start local 2 // org.w3c.dom.Node parent
        10: .line 256
            goto 16
        11: .line 257
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 0 /* this */
            aload 2 /* parent */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 1 /* result */
        12: .line 258
            aload 1 /* result */
            ifnull 15
        13: .line 259
            aload 0 /* this */
            aload 1 /* result */
            putfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fCurrentNode:Lorg/w3c/dom/Node;
        14: .line 260
            aload 1 /* result */
            areturn
        15: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* parent */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getParentNode:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 2 /* parent */
        16: .line 256
      StackMap locals:
      StackMap stack:
            aload 2 /* parent */
            ifnonnull 11
        17: .line 267
            aconst_null
            areturn
        end local 2 // org.w3c.dom.Node parent
        end local 1 // org.w3c.dom.Node result
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   18     0    this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            2   18     1  result  Lorg/w3c/dom/Node;
           10   18     2  parent  Lorg/w3c/dom/Node;

  org.w3c.dom.Node getParentNode(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 277
            aload 1 /* node */
            ifnull 1
            aload 1 /* node */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fRoot:Lorg/w3c/dom/Node;
            if_acmpne 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
            areturn
         2: .line 279
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getParentNode:()Lorg/w3c/dom/Node;
            astore 2 /* newNode */
        start local 2 // org.w3c.dom.Node newNode
         3: .line 280
            aload 2 /* newNode */
            ifnonnull 4
            aconst_null
            areturn
         4: .line 282
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 3 /* accept */
        start local 3 // int accept
         5: .line 284
            iload 3 /* accept */
            iconst_1
            if_icmpne 7
         6: .line 285
            aload 2 /* newNode */
            areturn
         7: .line 289
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getParentNode:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 3 // int accept
        end local 2 // org.w3c.dom.Node newNode
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    8     1     node  Lorg/w3c/dom/Node;
            3    8     2  newNode  Lorg/w3c/dom/Node;
            5    8     3   accept  I
    MethodParameters:
      Name  Flags
      node  

  org.w3c.dom.Node getNextSibling(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 301
            aload 0 /* this */
            aload 1 /* node */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fRoot:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    1     1  node  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  

  org.w3c.dom.Node getNextSibling(org.w3c.dom.Node, org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
        start local 2 // org.w3c.dom.Node root
         0: .line 312
            aload 1 /* node */
            ifnull 1
            aload 1 /* node */
            aload 2 /* root */
            if_acmpne 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
            areturn
         2: .line 314
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getNextSibling:()Lorg/w3c/dom/Node;
            astore 3 /* newNode */
        start local 3 // org.w3c.dom.Node newNode
         3: .line 315
            aload 3 /* newNode */
            ifnonnull 11
         4: .line 317
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getParentNode:()Lorg/w3c/dom/Node;
            astore 3 /* newNode */
         5: .line 319
            aload 3 /* newNode */
            ifnull 6
            aload 3 /* newNode */
            aload 2 /* root */
            if_acmpne 7
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
         6: aconst_null
            areturn
         7: .line 321
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 4 /* parentAccept */
        start local 4 // int parentAccept
         8: .line 323
            iload 4 /* parentAccept */
            iconst_3
            if_icmpne 10
         9: .line 324
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        10: .line 327
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 4 // int parentAccept
        11: .line 330
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 4 /* accept */
        start local 4 // int accept
        12: .line 332
            iload 4 /* accept */
            iconst_1
            if_icmpne 14
        13: .line 333
            aload 3 /* newNode */
            areturn
        14: .line 335
      StackMap locals: int
      StackMap stack:
            iload 4 /* accept */
            iconst_3
            if_icmpne 19
        15: .line 336
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getFirstChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 5 /* fChild */
        start local 5 // org.w3c.dom.Node fChild
        16: .line 337
            aload 5 /* fChild */
            ifnonnull 18
        17: .line 338
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        18: .line 340
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 5 /* fChild */
            areturn
        end local 5 // org.w3c.dom.Node fChild
        19: .line 345
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 4 // int accept
        end local 3 // org.w3c.dom.Node newNode
        end local 2 // org.w3c.dom.Node root
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0   20     1          node  Lorg/w3c/dom/Node;
            0   20     2          root  Lorg/w3c/dom/Node;
            3   20     3       newNode  Lorg/w3c/dom/Node;
            8   11     4  parentAccept  I
           12   20     4        accept  I
           16   19     5        fChild  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  
      root  

  org.w3c.dom.Node getPreviousSibling(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 356
            aload 0 /* this */
            aload 1 /* node */
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fRoot:Lorg/w3c/dom/Node;
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    1     1  node  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  

  org.w3c.dom.Node getPreviousSibling(org.w3c.dom.Node, org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
        start local 2 // org.w3c.dom.Node root
         0: .line 367
            aload 1 /* node */
            ifnull 1
            aload 1 /* node */
            aload 2 /* root */
            if_acmpne 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
            areturn
         2: .line 369
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getPreviousSibling:()Lorg/w3c/dom/Node;
            astore 3 /* newNode */
        start local 3 // org.w3c.dom.Node newNode
         3: .line 370
            aload 3 /* newNode */
            ifnonnull 11
         4: .line 372
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getParentNode:()Lorg/w3c/dom/Node;
            astore 3 /* newNode */
         5: .line 373
            aload 3 /* newNode */
            ifnull 6
            aload 3 /* newNode */
            aload 2 /* root */
            if_acmpne 7
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
         6: aconst_null
            areturn
         7: .line 375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 4 /* parentAccept */
        start local 4 // int parentAccept
         8: .line 377
            iload 4 /* parentAccept */
            iconst_3
            if_icmpne 10
         9: .line 378
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        10: .line 381
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 4 // int parentAccept
        11: .line 384
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 4 /* accept */
        start local 4 // int accept
        12: .line 386
            iload 4 /* accept */
            iconst_1
            if_icmpne 14
        13: .line 387
            aload 3 /* newNode */
            areturn
        14: .line 389
      StackMap locals: int
      StackMap stack:
            iload 4 /* accept */
            iconst_3
            if_icmpne 19
        15: .line 390
            aload 0 /* this */
            aload 3 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getLastChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 5 /* fChild */
        start local 5 // org.w3c.dom.Node fChild
        16: .line 391
            aload 5 /* fChild */
            ifnonnull 18
        17: .line 392
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        18: .line 394
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 5 /* fChild */
            areturn
        end local 5 // org.w3c.dom.Node fChild
        19: .line 399
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* newNode */
            aload 2 /* root */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 4 // int accept
        end local 3 // org.w3c.dom.Node newNode
        end local 2 // org.w3c.dom.Node root
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   20     0          this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0   20     1          node  Lorg/w3c/dom/Node;
            0   20     2          root  Lorg/w3c/dom/Node;
            3   20     3       newNode  Lorg/w3c/dom/Node;
            8   11     4  parentAccept  I
           12   20     4        accept  I
           16   19     5        fChild  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  
      root  

  org.w3c.dom.Node getFirstChild(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 410
            aload 1 /* node */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 412
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fEntityReferenceExpansion:Z
            ifne 4
         2: .line 413
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            iconst_5
            if_icmpne 4
         3: .line 414
            aconst_null
            areturn
         4: .line 415
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getFirstChild:()Lorg/w3c/dom/Node;
            astore 2 /* newNode */
        start local 2 // org.w3c.dom.Node newNode
         5: .line 416
            aload 2 /* newNode */
            ifnonnull 6
            aconst_null
            areturn
         6: .line 417
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 3 /* accept */
        start local 3 // int accept
         7: .line 419
            iload 3 /* accept */
            iconst_1
            if_icmpne 9
         8: .line 420
            aload 2 /* newNode */
            areturn
         9: .line 422
      StackMap locals: int
      StackMap stack:
            iload 3 /* accept */
            iconst_3
            if_icmpne 15
        10: .line 423
            aload 2 /* newNode */
            invokeinterface org.w3c.dom.Node.hasChildNodes:()Z
            ifeq 15
        11: .line 425
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getFirstChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 4 /* fChild */
        start local 4 // org.w3c.dom.Node fChild
        12: .line 427
            aload 4 /* fChild */
            ifnonnull 14
        13: .line 428
            aload 0 /* this */
            aload 2 /* newNode */
            aload 1 /* node */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        14: .line 430
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 4 /* fChild */
            areturn
        end local 4 // org.w3c.dom.Node fChild
        15: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            aload 1 /* node */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getNextSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 3 // int accept
        end local 2 // org.w3c.dom.Node newNode
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0   16     1     node  Lorg/w3c/dom/Node;
            5   16     2  newNode  Lorg/w3c/dom/Node;
            7   16     3   accept  I
           12   15     4   fChild  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  

  org.w3c.dom.Node getLastChild(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 448
            aload 1 /* node */
            ifnonnull 1
            aconst_null
            areturn
         1: .line 450
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fEntityReferenceExpansion:Z
            ifne 4
         2: .line 451
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            iconst_5
            if_icmpne 4
         3: .line 452
            aconst_null
            areturn
         4: .line 454
      StackMap locals:
      StackMap stack:
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getLastChild:()Lorg/w3c/dom/Node;
            astore 2 /* newNode */
        start local 2 // org.w3c.dom.Node newNode
         5: .line 455
            aload 2 /* newNode */
            ifnonnull 6
            aconst_null
            areturn
         6: .line 457
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.acceptNode:(Lorg/w3c/dom/Node;)S
            istore 3 /* accept */
        start local 3 // int accept
         7: .line 459
            iload 3 /* accept */
            iconst_1
            if_icmpne 9
         8: .line 460
            aload 2 /* newNode */
            areturn
         9: .line 462
      StackMap locals: int
      StackMap stack:
            iload 3 /* accept */
            iconst_3
            if_icmpne 15
        10: .line 463
            aload 2 /* newNode */
            invokeinterface org.w3c.dom.Node.hasChildNodes:()Z
            ifeq 15
        11: .line 465
            aload 0 /* this */
            aload 2 /* newNode */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getLastChild:(Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            astore 4 /* lChild */
        start local 4 // org.w3c.dom.Node lChild
        12: .line 466
            aload 4 /* lChild */
            ifnonnull 14
        13: .line 467
            aload 0 /* this */
            aload 2 /* newNode */
            aload 1 /* node */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        14: .line 469
      StackMap locals: org.w3c.dom.Node
      StackMap stack:
            aload 4 /* lChild */
            areturn
        end local 4 // org.w3c.dom.Node lChild
        15: .line 474
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* newNode */
            aload 1 /* node */
            invokevirtual com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.getPreviousSibling:(Lorg/w3c/dom/Node;Lorg/w3c/dom/Node;)Lorg/w3c/dom/Node;
            areturn
        end local 3 // int accept
        end local 2 // org.w3c.dom.Node newNode
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0   16     1     node  Lorg/w3c/dom/Node;
            5   16     2  newNode  Lorg/w3c/dom/Node;
            7   16     3   accept  I
           12   15     4   lChild  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  

  short acceptNode(org.w3c.dom.Node);
    descriptor: (Lorg/w3c/dom/Node;)S
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
        start local 1 // org.w3c.dom.Node node
         0: .line 492
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fNodeFilter:Lorg/w3c/dom/traversal/NodeFilter;
            ifnonnull 4
         1: .line 493
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
            iconst_1
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            iconst_1
            isub
            ishl
            iand
            ifeq 3
         2: .line 494
            iconst_1
            ireturn
         3: .line 496
      StackMap locals:
      StackMap stack:
            iconst_3
            ireturn
         4: .line 499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fWhatToShow:I
            iconst_1
            aload 1 /* node */
            invokeinterface org.w3c.dom.Node.getNodeType:()S
            iconst_1
            isub
            ishl
            iand
            ifeq 6
         5: .line 500
            aload 0 /* this */
            getfield com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl.fNodeFilter:Lorg/w3c/dom/traversal/NodeFilter;
            aload 1 /* node */
            invokeinterface org.w3c.dom.traversal.NodeFilter.acceptNode:(Lorg/w3c/dom/Node;)S
            ireturn
         6: .line 504
      StackMap locals:
      StackMap stack:
            iconst_3
            ireturn
        end local 1 // org.w3c.dom.Node node
        end local 0 // com.sun.org.apache.xerces.internal.dom.TreeWalkerImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/org/apache/xerces/internal/dom/TreeWalkerImpl;
            0    7     1  node  Lorg/w3c/dom/Node;
    MethodParameters:
      Name  Flags
      node  
}
SourceFile: "TreeWalkerImpl.java"