public class com.sun.org.apache.xpath.internal.compiler.Compiler extends com.sun.org.apache.xpath.internal.compiler.OpMap
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xpath.internal.compiler.Compiler
  super_class: com.sun.org.apache.xpath.internal.compiler.OpMap
{
  private int locPathDepth;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private static final boolean DEBUG;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  private static long s_nextMethodId;
    descriptor: J
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  private com.sun.org.apache.xml.internal.utils.PrefixResolver m_currentPrefixResolver;
    descriptor: Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
    flags: (0x0002) ACC_PRIVATE

  javax.xml.transform.ErrorListener m_errorHandler;
    descriptor: Ljavax/xml/transform/ErrorListener;
    flags: (0x0000) 

  javax.xml.transform.SourceLocator m_locator;
    descriptor: Ljavax/xml/transform/SourceLocator;
    flags: (0x0000) 

  private com.sun.org.apache.xpath.internal.compiler.FunctionTable m_functionTable;
    descriptor: Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
    flags: (0x0002) ACC_PRIVATE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 1079
            lconst_0
            putstatic com.sun.org.apache.xpath.internal.compiler.Compiler.s_nextMethodId:J
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(javax.xml.transform.ErrorListener, javax.xml.transform.SourceLocator, com.sun.org.apache.xpath.internal.compiler.FunctionTable);
    descriptor: (Ljavax/xml/transform/ErrorListener;Ljavax/xml/transform/SourceLocator;Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // javax.xml.transform.ErrorListener errorHandler
        start local 2 // javax.xml.transform.SourceLocator locator
        start local 3 // com.sun.org.apache.xpath.internal.compiler.FunctionTable fTable
         0: .line 89
            aload 0 /* this */
            invokespecial com.sun.org.apache.xpath.internal.compiler.OpMap.<init>:()V
         1: .line 613
            aload 0 /* this */
            iconst_m1
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         2: .line 1236
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_currentPrefixResolver:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
         3: .line 92
            aload 0 /* this */
            aload 1 /* errorHandler */
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
         4: .line 93
            aload 0 /* this */
            aload 2 /* locator */
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
         5: .line 94
            aload 0 /* this */
            aload 3 /* fTable */
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
         6: .line 95
            return
        end local 3 // com.sun.org.apache.xpath.internal.compiler.FunctionTable fTable
        end local 2 // javax.xml.transform.SourceLocator locator
        end local 1 // javax.xml.transform.ErrorListener errorHandler
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    7     1  errorHandler  Ljavax/xml/transform/ErrorListener;
            0    7     2       locator  Ljavax/xml/transform/SourceLocator;
            0    7     3        fTable  Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
    MethodParameters:
              Name  Flags
      errorHandler  
      locator       
      fTable        

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
         0: .line 101
            aload 0 /* this */
            invokespecial com.sun.org.apache.xpath.internal.compiler.OpMap.<init>:()V
         1: .line 613
            aload 0 /* this */
            iconst_m1
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         2: .line 1236
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_currentPrefixResolver:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
         3: .line 103
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
         4: .line 104
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
         5: .line 105
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;

  public com.sun.org.apache.xpath.internal.Expression compile(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 118
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 2 /* op */
        start local 2 // int op
         1: .line 120
            aconst_null
            astore 3 /* expr */
        start local 3 // com.sun.org.apache.xpath.internal.Expression expr
         2: .line 122
            iload 2 /* op */
            tableswitch { // 1 - 31
                    1: 3
                    2: 4
                    3: 5
                    4: 6
                    5: 7
                    6: 8
                    7: 9
                    8: 10
                    9: 11
                   10: 12
                   11: 13
                   12: 14
                   13: 15
                   14: 16
                   15: 33
                   16: 17
                   17: 18
                   18: 19
                   19: 20
                   20: 21
                   21: 22
                   22: 23
                   23: 24
                   24: 27
                   25: 28
                   26: 26
                   27: 25
                   28: 29
                   29: 30
                   30: 31
                   31: 32
              default: 37
          }
         3: .line 125
      StackMap locals: int com.sun.org.apache.xpath.internal.Expression
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         4: .line 127
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.or:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         5: .line 129
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.and:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         6: .line 131
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.notequals:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         7: .line 133
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.equals:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         8: .line 135
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.lte:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
         9: .line 137
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.lt:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        10: .line 139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.gte:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        11: .line 141
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.gt:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        12: .line 143
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.plus:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        13: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.minus:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        14: .line 147
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.mult:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        15: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.div:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        16: .line 151
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.mod:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        17: .line 155
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.neg:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        18: .line 157
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.string:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        19: .line 159
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.bool:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        20: .line 161
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.number:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        21: .line 163
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.union:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        22: .line 165
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.literal:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        23: .line 167
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.variable:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        24: .line 169
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.group:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        25: .line 171
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.numberlit:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        26: .line 173
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.arg:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        27: .line 175
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileExtension:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        28: .line 177
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileFunction:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        29: .line 179
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.locationPath:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        30: .line 181
      StackMap locals:
      StackMap stack:
            aconst_null
            astore 3 /* expr */
            goto 40
        31: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.matchPattern:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        32: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.locationPathPattern:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 3 /* expr */
            goto 40
        33: .line 187
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_UNKNOWN_OPCODE"
        34: .line 188
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "quo"
            aastore
        35: .line 187
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        36: .line 189
            goto 40
        37: .line 191
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_UNKNOWN_OPCODE"
        38: .line 192
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokestatic java.lang.Integer.toString:(I)Ljava/lang/String;
            aastore
        39: .line 191
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        40: .line 197
      StackMap locals:
      StackMap stack:
            aload 3 /* expr */
            areturn
        end local 3 // com.sun.org.apache.xpath.internal.Expression expr
        end local 2 // int op
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   41     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   41     1  opPos  I
            1   41     2     op  I
            2   41     3   expr  Lcom/sun/org/apache/xpath/internal/Expression;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  private com.sun.org.apache.xpath.internal.Expression compileOperation(com.sun.org.apache.xpath.internal.operations.Operation, int);
    descriptor: (Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // com.sun.org.apache.xpath.internal.operations.Operation operation
        start local 2 // int opPos
         0: .line 214
            iload 2 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 3 /* leftPos */
        start local 3 // int leftPos
         1: .line 215
            aload 0 /* this */
            iload 3 /* leftPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 4 /* rightPos */
        start local 4 // int rightPos
         2: .line 217
            aload 1 /* operation */
            aload 0 /* this */
            iload 3 /* leftPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            aload 0 /* this */
            iload 4 /* rightPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            invokevirtual com.sun.org.apache.xpath.internal.operations.Operation.setLeftRight:(Lcom/sun/org/apache/xpath/internal/Expression;Lcom/sun/org/apache/xpath/internal/Expression;)V
         3: .line 219
            aload 1 /* operation */
            areturn
        end local 4 // int rightPos
        end local 3 // int leftPos
        end local 2 // int opPos
        end local 1 // com.sun.org.apache.xpath.internal.operations.Operation operation
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    4     1  operation  Lcom/sun/org/apache/xpath/internal/operations/Operation;
            0    4     2      opPos  I
            1    4     3    leftPos  I
            2    4     4   rightPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
           Name  Flags
      operation  
      opPos      

  private com.sun.org.apache.xpath.internal.Expression compileUnary(com.sun.org.apache.xpath.internal.operations.UnaryOperation, int);
    descriptor: (Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // com.sun.org.apache.xpath.internal.operations.UnaryOperation unary
        start local 2 // int opPos
         0: .line 236
            iload 2 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 3 /* rightPos */
        start local 3 // int rightPos
         1: .line 238
            aload 1 /* unary */
            aload 0 /* this */
            iload 3 /* rightPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            invokevirtual com.sun.org.apache.xpath.internal.operations.UnaryOperation.setRight:(Lcom/sun/org/apache/xpath/internal/Expression;)V
         2: .line 240
            aload 1 /* unary */
            areturn
        end local 3 // int rightPos
        end local 2 // int opPos
        end local 1 // com.sun.org.apache.xpath.internal.operations.UnaryOperation unary
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    3     1     unary  Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;
            0    3     2     opPos  I
            1    3     3  rightPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      unary  
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression or(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 254
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Or
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Or.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression and(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 268
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.And
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.And.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression notequals(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 282
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.NotEquals
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.NotEquals.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression equals(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 296
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Equals
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Equals.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression lte(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 310
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Lte
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Lte.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression lt(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 324
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Lt
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Lt.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression gte(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 338
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Gte
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Gte.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression gt(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 352
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Gt
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Gt.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression plus(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 366
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Plus
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Plus.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression minus(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 380
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Minus
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Minus.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression mult(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 394
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Mult
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Mult.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression div(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 408
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Div
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Div.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression mod(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 422
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Mod
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Mod.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileOperation:(Lcom/sun/org/apache/xpath/internal/operations/Operation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression neg(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 450
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Neg
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Neg.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileUnary:(Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression string(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 464
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.String
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.String.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileUnary:(Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression bool(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 478
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Bool
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Bool.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileUnary:(Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression number(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 492
            aload 0 /* this */
            new com.sun.org.apache.xpath.internal.operations.Number
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Number.<init>:()V
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileUnary:(Lcom/sun/org/apache/xpath/internal/operations/UnaryOperation;I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression literal(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 507
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         1: .line 509
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xpath.internal.objects.XString
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    2     1  opPos  I
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression numberlit(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 524
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         1: .line 526
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xpath.internal.objects.XNumber
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    2     1  opPos  I
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression variable(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 541
            new com.sun.org.apache.xpath.internal.operations.Variable
            dup
            invokespecial com.sun.org.apache.xpath.internal.operations.Variable.<init>:()V
            astore 2 /* var */
        start local 2 // com.sun.org.apache.xpath.internal.operations.Variable var
         1: .line 543
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         2: .line 545
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 3 /* nsPos */
        start local 3 // int nsPos
         3: .line 547
            bipush -2
            iload 3 /* nsPos */
            if_icmpne 4
            aconst_null
            goto 5
         4: .line 548
      StackMap locals: com.sun.org.apache.xpath.internal.operations.Variable int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            iload 3 /* nsPos */
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
         5: .line 546
      StackMap locals:
      StackMap stack: java.lang.String
            astore 4 /* namespace */
        start local 4 // java.lang.String namespace
         6: .line 550
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
         7: .line 549
            astore 5 /* localname */
        start local 5 // java.lang.String localname
         8: .line 551
            new com.sun.org.apache.xml.internal.utils.QName
            dup
            aload 4 /* namespace */
            aload 5 /* localname */
            invokespecial com.sun.org.apache.xml.internal.utils.QName.<init>:(Ljava/lang/String;Ljava/lang/String;)V
            astore 6 /* qname */
        start local 6 // com.sun.org.apache.xml.internal.utils.QName qname
         9: .line 553
            aload 2 /* var */
            aload 6 /* qname */
            invokevirtual com.sun.org.apache.xpath.internal.operations.Variable.setQName:(Lcom/sun/org/apache/xml/internal/utils/QName;)V
        10: .line 555
            aload 2 /* var */
            areturn
        end local 6 // com.sun.org.apache.xml.internal.utils.QName qname
        end local 5 // java.lang.String localname
        end local 4 // java.lang.String namespace
        end local 3 // int nsPos
        end local 2 // com.sun.org.apache.xpath.internal.operations.Variable var
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   11     1      opPos  I
            1   11     2        var  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            3   11     3      nsPos  I
            6   11     4  namespace  Ljava/lang/String;
            8   11     5  localname  Ljava/lang/String;
            9   11     6      qname  Lcom/sun/org/apache/xml/internal/utils/QName;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression group(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 571
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression arg(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 587
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression union(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 602
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         1: .line 605
            aload 0 /* this */
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.axes.UnionPathIterator.createUnionIterator:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;I)Lcom/sun/org/apache/xpath/internal/axes/LocPathIterator;
            astore 3
         2: .line 609
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         3: .line 605
            aload 3
            areturn
         4: .line 608
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 2
         5: .line 609
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         6: .line 610
            aload 2
            athrow
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    7     1  opPos  I
      Exception table:
        from    to  target  type
           1     2       4  any
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public int getLocationPathDepth();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
         0: .line 621
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            ireturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;

  com.sun.org.apache.xpath.internal.compiler.FunctionTable getFunctionTable();
    descriptor: ()Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
         0: .line 629
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            areturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;

  public com.sun.org.apache.xpath.internal.Expression locationPath(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 644
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         1: .line 647
            aload 0 /* this */
            iload 1 /* opPos */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            ifne 2
            iconst_1
            goto 3
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int
      StackMap stack: com.sun.org.apache.xpath.internal.compiler.Compiler int
         2: iconst_0
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int
      StackMap stack: com.sun.org.apache.xpath.internal.compiler.Compiler int int
         3: invokestatic com.sun.org.apache.xpath.internal.axes.WalkerFactory.newDTMIterator:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;IZ)Lcom/sun/org/apache/xml/internal/dtm/DTMIterator;
            astore 2 /* iter */
        start local 2 // com.sun.org.apache.xml.internal.dtm.DTMIterator iter
         4: .line 648
            aload 2 /* iter */
            checkcast com.sun.org.apache.xpath.internal.Expression
            astore 4
         5: .line 652
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         6: .line 648
            aload 4
            areturn
        end local 2 // com.sun.org.apache.xml.internal.dtm.DTMIterator iter
         7: .line 651
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
         8: .line 652
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         9: .line 653
            aload 3
            athrow
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   10     1  opPos  I
            4    7     2   iter  Lcom/sun/org/apache/xml/internal/dtm/DTMIterator;
      Exception table:
        from    to  target  type
           1     5       7  any
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public com.sun.org.apache.xpath.internal.Expression predicate(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 667
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    1     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.Expression matchPattern(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 681
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            iadd
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
         1: .line 685
            iload 1 /* opPos */
            istore 2 /* nextOpPos */
        start local 2 // int nextOpPos
         2: .line 688
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 690
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* nextOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 2 /* nextOpPos */
         5: .line 688
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            iload 2 /* nextOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            bipush 31
            if_icmpeq 4
         7: .line 693
            iload 3 /* i */
            iconst_1
            if_icmpne 11
         8: .line 694
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            astore 7
         9: .line 712
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
        10: .line 694
            aload 7
            areturn
        11: .line 696
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xpath.internal.patterns.UnionPattern
            dup
            invokespecial com.sun.org.apache.xpath.internal.patterns.UnionPattern.<init>:()V
            astore 4 /* up */
        start local 4 // com.sun.org.apache.xpath.internal.patterns.UnionPattern up
        12: .line 697
            iload 3 /* i */
            anewarray com.sun.org.apache.xpath.internal.patterns.StepPattern
            astore 5 /* patterns */
        start local 5 // com.sun.org.apache.xpath.internal.patterns.StepPattern[] patterns
        13: .line 699
            iconst_0
            istore 3 /* i */
            goto 18
        14: .line 701
      StackMap locals: com.sun.org.apache.xpath.internal.patterns.UnionPattern com.sun.org.apache.xpath.internal.patterns.StepPattern[]
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 2 /* nextOpPos */
        15: .line 702
            aload 5 /* patterns */
            iload 3 /* i */
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            checkcast com.sun.org.apache.xpath.internal.patterns.StepPattern
            aastore
        16: .line 703
            iload 2 /* nextOpPos */
            istore 1 /* opPos */
        17: .line 699
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            bipush 31
            if_icmpeq 14
        19: .line 706
            aload 4 /* up */
            aload 5 /* patterns */
            invokevirtual com.sun.org.apache.xpath.internal.patterns.UnionPattern.setPatterns:([Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;)V
        20: .line 708
            aload 4 /* up */
            astore 7
        21: .line 712
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
        22: .line 708
            aload 7
            areturn
        end local 5 // com.sun.org.apache.xpath.internal.patterns.StepPattern[] patterns
        end local 4 // com.sun.org.apache.xpath.internal.patterns.UnionPattern up
        end local 3 // int i
        end local 2 // int nextOpPos
        23: .line 711
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int
      StackMap stack: java.lang.Throwable
            astore 6
        24: .line 712
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.locPathDepth:I
        25: .line 713
            aload 6
            athrow
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   26     0       this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   26     1      opPos  I
            2   23     2  nextOpPos  I
            3   23     3          i  I
           12   23     4         up  Lcom/sun/org/apache/xpath/internal/patterns/UnionPattern;
           13   23     5   patterns  [Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
      Exception table:
        from    to  target  type
           1     9      23  any
          11    21      23  any
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public com.sun.org.apache.xpath.internal.Expression locationPathPattern(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 729
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         1: .line 731
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_0
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.stepPattern:(IILcom/sun/org/apache/xpath/internal/patterns/StepPattern;)Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
            areturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    2     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public int getWhatToShow(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 746
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 2 /* axesType */
        start local 2 // int axesType
         1: .line 747
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_3
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 3 /* testType */
        start local 3 // int testType
         2: .line 750
            iload 3 /* testType */
            lookupswitch { // 7
                   34: 15
                   35: 13
                 1030: 3
                 1031: 4
                 1032: 5
                 1033: 6
                 1034: 14
              default: 20
          }
         3: .line 753
      StackMap locals: int int
      StackMap stack:
            sipush 128
            ireturn
         4: .line 756
      StackMap locals:
      StackMap stack:
            bipush 12
            ireturn
         5: .line 758
      StackMap locals:
      StackMap stack:
            bipush 64
            ireturn
         6: .line 761
      StackMap locals:
      StackMap stack:
            iload 2 /* axesType */
            tableswitch { // 38 - 51
                   38: 9
                   39: 8
                   40: 10
                   41: 10
                   42: 9
                   43: 10
                   44: 10
                   45: 10
                   46: 10
                   47: 10
                   48: 9
                   49: 7
                   50: 10
                   51: 8
              default: 10
          }
         7: .line 764
      StackMap locals:
      StackMap stack:
            sipush 4096
            ireturn
         8: .line 767
      StackMap locals:
      StackMap stack:
            iconst_2
            ireturn
         9: .line 771
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        10: .line 773
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_0
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            bipush 30
            if_icmpne 12
        11: .line 774
            sipush -1283
            ireturn
        12: .line 778
      StackMap locals:
      StackMap stack:
            bipush -3
            ireturn
        13: .line 781
      StackMap locals:
      StackMap stack:
            sipush 1280
            ireturn
        14: .line 783
      StackMap locals:
      StackMap stack:
            ldc 65536
            ireturn
        15: .line 785
      StackMap locals:
      StackMap stack:
            iload 2 /* axesType */
            lookupswitch { // 5
                   39: 17
                   49: 16
                   51: 17
                   52: 18
                   53: 18
              default: 19
          }
        16: .line 788
      StackMap locals:
      StackMap stack:
            sipush 4096
            ireturn
        17: .line 791
      StackMap locals:
      StackMap stack:
            iconst_2
            ireturn
        18: .line 796
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        19: .line 800
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        20: .line 804
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 3 // int testType
        end local 2 // int axesType
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   21     1     opPos  I
            1   21     2  axesType  I
            2   21     3  testType  I
    MethodParameters:
       Name  Flags
      opPos  

  protected com.sun.org.apache.xpath.internal.patterns.StepPattern stepPattern(int, int, com.sun.org.apache.xpath.internal.patterns.StepPattern);
    descriptor: (IILcom/sun/org/apache/xpath/internal/patterns/StepPattern;)Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=10, args_size=4
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
        start local 2 // int stepCount
        start local 3 // com.sun.org.apache.xpath.internal.patterns.StepPattern ancestorPattern
         0: .line 827
            iload 1 /* opPos */
            istore 4 /* startOpPos */
        start local 4 // int startOpPos
         1: .line 828
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 5 /* stepType */
        start local 5 // int stepType
         2: .line 830
            iconst_m1
            iload 5 /* stepType */
            if_icmpne 4
         3: .line 832
            aconst_null
            areturn
         4: .line 837
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 6 /* endStep */
        start local 6 // int endStep
         5: .line 845
            iload 5 /* stepType */
            lookupswitch { // 5
                   25: 6
                   50: 9
                   51: 15
                   52: 23
                   53: 33
              default: 41
          }
         6: .line 851
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 8 /* argLen */
        start local 8 // int argLen
         7: .line 852
            new com.sun.org.apache.xpath.internal.patterns.FunctionPattern
            dup
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compileFunction:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            bipush 10
            iconst_3
            invokespecial com.sun.org.apache.xpath.internal.patterns.FunctionPattern.<init>:(Lcom/sun/org/apache/xpath/internal/Expression;II)V
            astore 7 /* pattern */
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
         8: .line 853
            goto 43
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
         9: .line 858
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getArgLengthOfStep:(I)I
            istore 8 /* argLen */
        start local 8 // int argLen
        10: .line 859
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPosOfStep:(I)I
            istore 1 /* opPos */
        11: .line 860
            new com.sun.org.apache.xpath.internal.patterns.StepPattern
            dup
            sipush 1280
        12: .line 862
            bipush 10
            iconst_3
        13: .line 860
            invokespecial com.sun.org.apache.xpath.internal.patterns.StepPattern.<init>:(III)V
            astore 7 /* pattern */
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        14: .line 863
            goto 43
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        15: .line 867
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getArgLengthOfStep:(I)I
            istore 8 /* argLen */
        start local 8 // int argLen
        16: .line 868
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPosOfStep:(I)I
            istore 1 /* opPos */
        17: .line 869
            new com.sun.org.apache.xpath.internal.patterns.StepPattern
            dup
            iconst_2
        18: .line 870
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepNS:(I)Ljava/lang/String;
        19: .line 871
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepLocalName:(I)Ljava/lang/String;
        20: .line 872
            bipush 10
            iconst_2
        21: .line 869
            invokespecial com.sun.org.apache.xpath.internal.patterns.StepPattern.<init>:(ILjava/lang/String;Ljava/lang/String;II)V
            astore 7 /* pattern */
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        22: .line 873
            goto 43
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        23: .line 877
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getArgLengthOfStep:(I)I
            istore 8 /* argLen */
        start local 8 // int argLen
        24: .line 878
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPosOfStep:(I)I
            istore 1 /* opPos */
        25: .line 879
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getWhatToShow:(I)I
            istore 9 /* what */
        start local 9 // int what
        26: .line 881
            sipush 1280
            iload 9 /* what */
            if_icmpne 27
        27: .line 883
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int int com.sun.org.apache.xpath.internal.patterns.StepPattern int int int top int int
      StackMap stack:
            new com.sun.org.apache.xpath.internal.patterns.StepPattern
            dup
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getWhatToShow:(I)I
        28: .line 884
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepNS:(I)Ljava/lang/String;
        29: .line 885
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepLocalName:(I)Ljava/lang/String;
        30: .line 886
            iconst_0
            iconst_3
        31: .line 883
            invokespecial com.sun.org.apache.xpath.internal.patterns.StepPattern.<init>:(ILjava/lang/String;Ljava/lang/String;II)V
            astore 7 /* pattern */
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        32: .line 887
            goto 43
        end local 9 // int what
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        33: .line 891
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int int com.sun.org.apache.xpath.internal.patterns.StepPattern int int int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getArgLengthOfStep:(I)I
            istore 8 /* argLen */
        start local 8 // int argLen
        34: .line 892
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPosOfStep:(I)I
            istore 1 /* opPos */
        35: .line 893
            new com.sun.org.apache.xpath.internal.patterns.StepPattern
            dup
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getWhatToShow:(I)I
        36: .line 894
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepNS:(I)Ljava/lang/String;
        37: .line 895
            aload 0 /* this */
            iload 4 /* startOpPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getStepLocalName:(I)Ljava/lang/String;
        38: .line 896
            bipush 10
            iconst_3
        39: .line 893
            invokespecial com.sun.org.apache.xpath.internal.patterns.StepPattern.<init>:(ILjava/lang/String;Ljava/lang/String;II)V
            astore 7 /* pattern */
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        40: .line 897
            goto 43
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        41: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_UNKNOWN_MATCH_OPERATION"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        42: .line 901
            aconst_null
            areturn
        start local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        start local 8 // int argLen
        43: .line 904
      StackMap locals: com.sun.org.apache.xpath.internal.patterns.StepPattern int
      StackMap stack:
            aload 7 /* pattern */
            aload 0 /* this */
            iload 1 /* opPos */
            iload 8 /* argLen */
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getCompiledPredicates:(I)[Lcom/sun/org/apache/xpath/internal/Expression;
            invokevirtual com.sun.org.apache.xpath.internal.patterns.StepPattern.setPredicates:([Lcom/sun/org/apache/xpath/internal/Expression;)V
        44: .line 905
            aload 3 /* ancestorPattern */
            ifnull 46
        45: .line 930
            aload 7 /* pattern */
            aload 3 /* ancestorPattern */
            invokevirtual com.sun.org.apache.xpath.internal.patterns.StepPattern.setRelativePathPattern:(Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;)V
        46: .line 933
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 6 /* endStep */
            iload 2 /* stepCount */
            iconst_1
            iadd
        47: .line 934
            aload 7 /* pattern */
        48: .line 933
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.stepPattern:(IILcom/sun/org/apache/xpath/internal/patterns/StepPattern;)Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
            astore 9 /* relativePathPattern */
        start local 9 // com.sun.org.apache.xpath.internal.patterns.StepPattern relativePathPattern
        49: .line 936
            aload 9 /* relativePathPattern */
            ifnull 50
            aload 9 /* relativePathPattern */
            goto 51
      StackMap locals: com.sun.org.apache.xpath.internal.patterns.StepPattern
      StackMap stack:
        50: aload 7 /* pattern */
      StackMap locals:
      StackMap stack: com.sun.org.apache.xpath.internal.patterns.StepPattern
        51: areturn
        end local 9 // com.sun.org.apache.xpath.internal.patterns.StepPattern relativePathPattern
        end local 8 // int argLen
        end local 7 // com.sun.org.apache.xpath.internal.patterns.StepPattern pattern
        end local 6 // int endStep
        end local 5 // int stepType
        end local 4 // int startOpPos
        end local 3 // com.sun.org.apache.xpath.internal.patterns.StepPattern ancestorPattern
        end local 2 // int stepCount
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   52     0                 this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   52     1                opPos  I
            0   52     2            stepCount  I
            0   52     3      ancestorPattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
            1   52     4           startOpPos  I
            2   52     5             stepType  I
            5   52     6              endStep  I
            8    9     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
           14   15     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
           22   23     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
           32   33     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
           40   41     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
           43   52     7              pattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
            7    9     8               argLen  I
           10   15     8               argLen  I
           16   23     8               argLen  I
           24   33     8               argLen  I
           34   41     8               argLen  I
           43   52     8               argLen  I
           26   33     9                 what  I
           49   52     9  relativePathPattern  Lcom/sun/org/apache/xpath/internal/patterns/StepPattern;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
                 Name  Flags
      opPos            
      stepCount        
      ancestorPattern  

  public com.sun.org.apache.xpath.internal.Expression[] getCompiledPredicates(int);
    descriptor: (I)[Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 952
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.countPredicates:(I)I
            istore 2 /* count */
        start local 2 // int count
         1: .line 954
            iload 2 /* count */
            ifle 5
         2: .line 956
            iload 2 /* count */
            anewarray com.sun.org.apache.xpath.internal.Expression
            astore 3 /* predicates */
        start local 3 // com.sun.org.apache.xpath.internal.Expression[] predicates
         3: .line 958
            aload 0 /* this */
            iload 1 /* opPos */
            aload 3 /* predicates */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compilePredicates:(I[Lcom/sun/org/apache/xpath/internal/Expression;)V
         4: .line 960
            aload 3 /* predicates */
            areturn
        end local 3 // com.sun.org.apache.xpath.internal.Expression[] predicates
         5: .line 963
      StackMap locals: int
      StackMap stack:
            aconst_null
            areturn
        end local 2 // int count
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    6     1       opPos  I
            1    6     2       count  I
            3    5     3  predicates  [Lcom/sun/org/apache/xpath/internal/Expression;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public int countPredicates(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 978
            iconst_0
            istore 2 /* count */
        start local 2 // int count
         1: .line 980
            goto 4
         2: .line 982
      StackMap locals: int
      StackMap stack:
            iinc 2 /* count */ 1
         3: .line 984
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 1 /* opPos */
         4: .line 980
      StackMap locals:
      StackMap stack:
            bipush 29
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            if_icmpeq 2
         5: .line 987
            iload 2 /* count */
            ireturn
        end local 2 // int count
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    6     1  opPos  I
            1    6     2  count  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  private void compilePredicates(int, com.sun.org.apache.xpath.internal.Expression[]);
    descriptor: (I[Lcom/sun/org/apache/xpath/internal/Expression;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
        start local 2 // com.sun.org.apache.xpath.internal.Expression[] predicates
         0: .line 1003
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         1: goto 5
         2: .line 1005
      StackMap locals: int
      StackMap stack:
            aload 2 /* predicates */
            iload 3 /* i */
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.predicate:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            aastore
         3: .line 1006
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 1 /* opPos */
         4: .line 1003
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: bipush 29
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            if_icmpeq 2
        end local 3 // int i
         6: .line 1008
            return
        end local 2 // com.sun.org.apache.xpath.internal.Expression[] predicates
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    7     1       opPos  I
            0    7     2  predicates  [Lcom/sun/org/apache/xpath/internal/Expression;
            1    6     3           i  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
            Name  Flags
      opPos       
      predicates  

  com.sun.org.apache.xpath.internal.Expression compileFunction(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0000) 
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 1022
            iload 1 /* opPos */
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            iadd
            iconst_1
            isub
            istore 2 /* endFunc */
        start local 2 // int endFunc
         1: .line 1024
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         2: .line 1026
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            istore 3 /* funcID */
        start local 3 // int funcID
         3: .line 1028
            iinc 1 /* opPos */ 1
         4: .line 1030
            iconst_m1
            iload 3 /* funcID */
            if_icmpeq 26
         5: .line 1032
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            iload 3 /* funcID */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.FunctionTable.getFunction:(I)Lcom/sun/org/apache/xpath/internal/functions/Function;
            astore 4 /* func */
        start local 4 // com.sun.org.apache.xpath.internal.functions.Function func
         6: .line 1039
            aload 4 /* func */
            instanceof com.sun.org.apache.xpath.internal.functions.FuncExtFunctionAvailable
            ifeq 8
         7: .line 1040
            aload 4 /* func */
            checkcast com.sun.org.apache.xpath.internal.functions.FuncExtFunctionAvailable
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            invokevirtual com.sun.org.apache.xpath.internal.functions.FuncExtFunctionAvailable.setFunctionTable:(Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;)V
         8: .line 1042
      StackMap locals: int int com.sun.org.apache.xpath.internal.functions.Function
      StackMap stack:
            aload 4 /* func */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.functions.Function.postCompileStep:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;)V
         9: .line 1046
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: .line 1048
            iload 1 /* opPos */
            istore 6 /* p */
        start local 6 // int p
        11: goto 14
        12: .line 1053
      StackMap locals: int int
      StackMap stack:
            aload 4 /* func */
            aload 0 /* this */
            iload 6 /* p */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            iload 5 /* i */
            invokevirtual com.sun.org.apache.xpath.internal.functions.Function.setArg:(Lcom/sun/org/apache/xpath/internal/Expression;I)V
        13: .line 1048
            aload 0 /* this */
            iload 6 /* p */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 6 /* p */
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 6 /* p */
            iload 2 /* endFunc */
            if_icmplt 12
        end local 6 // int p
        15: .line 1056
            aload 4 /* func */
            iload 5 /* i */
            invokevirtual com.sun.org.apache.xpath.internal.functions.Function.checkNumberArgs:(I)V
        end local 5 // int i
        16: .line 1057
            goto 25
        17: .line 1058
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int int int com.sun.org.apache.xpath.internal.functions.Function
      StackMap stack: com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException
            astore 5 /* wnae */
        start local 5 // com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException wnae
        18: .line 1060
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            iload 3 /* funcID */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.FunctionTable.getFunctionName:(I)Ljava/lang/String;
            astore 6 /* name */
        start local 6 // java.lang.String name
        19: .line 1062
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
            new javax.xml.transform.TransformerException
            dup
        20: .line 1063
            ldc "ER_ONLY_ALLOWS"
        21: .line 1064
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 6 /* name */
            aastore
            dup
            iconst_1
            aload 5 /* wnae */
            invokevirtual com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException.getMessage:()Ljava/lang/String;
            aastore
        22: .line 1063
            invokestatic com.sun.org.apache.xalan.internal.res.XSLMessages.createXPATHMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
        23: .line 1064
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
        24: .line 1062
            invokeinterface javax.xml.transform.ErrorListener.fatalError:(Ljavax/xml/transform/TransformerException;)V
        end local 6 // java.lang.String name
        end local 5 // com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException wnae
        25: .line 1068
      StackMap locals:
      StackMap stack:
            aload 4 /* func */
            areturn
        end local 4 // com.sun.org.apache.xpath.internal.functions.Function func
        26: .line 1072
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_FUNCTION_TOKEN_NOT_FOUND"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        27: .line 1074
            aconst_null
            areturn
        end local 3 // int funcID
        end local 2 // int endFunc
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   28     0     this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   28     1    opPos  I
            1   28     2  endFunc  I
            3   28     3   funcID  I
            6   26     4     func  Lcom/sun/org/apache/xpath/internal/functions/Function;
           10   16     5        i  I
           11   15     6        p  I
           18   25     5     wnae  Lcom/sun/org/apache/xpath/internal/functions/WrongNumberArgsException;
           19   25     6     name  Ljava/lang/String;
      Exception table:
        from    to  target  type
           9    16      17  Class com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  private synchronized long getNextMethodId();
    descriptor: ()J
    flags: (0x0022) ACC_PRIVATE, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
         0: .line 1086
            getstatic com.sun.org.apache.xpath.internal.compiler.Compiler.s_nextMethodId:J
            ldc 9223372036854775807
            lcmp
            ifne 2
         1: .line 1087
            lconst_0
            putstatic com.sun.org.apache.xpath.internal.compiler.Compiler.s_nextMethodId:J
         2: .line 1089
      StackMap locals:
      StackMap stack:
            getstatic com.sun.org.apache.xpath.internal.compiler.Compiler.s_nextMethodId:J
            dup2
            lconst_1
            ladd
            putstatic com.sun.org.apache.xpath.internal.compiler.Compiler.s_nextMethodId:J
            lreturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;

  private com.sun.org.apache.xpath.internal.Expression compileExtension(int);
    descriptor: (I)Lcom/sun/org/apache/xpath/internal/Expression;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // int opPos
         0: .line 1105
            iload 1 /* opPos */
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            iadd
            iconst_1
            isub
            istore 2 /* endExtFunc */
        start local 2 // int endExtFunc
         1: .line 1107
            iload 1 /* opPos */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Compiler.getFirstChildPos:(I)I
            istore 1 /* opPos */
         2: .line 1109
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* ns */
        start local 3 // java.lang.String ns
         3: .line 1111
            iinc 1 /* opPos */ 1
         4: .line 1114
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getTokenQueue:()Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getOp:(I)I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
         5: .line 1113
            astore 4 /* funcName */
        start local 4 // java.lang.String funcName
         6: .line 1116
            iinc 1 /* opPos */ 1
         7: .line 1122
            new com.sun.org.apache.xpath.internal.functions.FuncExtFunction
            dup
            aload 3 /* ns */
            aload 4 /* funcName */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextMethodId:()J
            invokestatic java.lang.String.valueOf:(J)Ljava/lang/String;
            invokespecial com.sun.org.apache.xpath.internal.functions.FuncExtFunction.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)V
            astore 5 /* extension */
        start local 5 // com.sun.org.apache.xpath.internal.functions.Function extension
         8: .line 1126
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         9: .line 1128
            goto 14
        10: .line 1130
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int int java.lang.String java.lang.String com.sun.org.apache.xpath.internal.functions.Function int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getNextOpPos:(I)I
            istore 7 /* nextOpPos */
        start local 7 // int nextOpPos
        11: .line 1132
            aload 5 /* extension */
            aload 0 /* this */
            iload 1 /* opPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.compile:(I)Lcom/sun/org/apache/xpath/internal/Expression;
            iload 6 /* i */
            invokevirtual com.sun.org.apache.xpath.internal.functions.Function.setArg:(Lcom/sun/org/apache/xpath/internal/Expression;I)V
        12: .line 1134
            iload 7 /* nextOpPos */
            istore 1 /* opPos */
        13: .line 1136
            iinc 6 /* i */ 1
        end local 7 // int nextOpPos
        14: .line 1128
      StackMap locals:
      StackMap stack:
            iload 1 /* opPos */
            iload 2 /* endExtFunc */
            if_icmplt 10
        end local 6 // int i
        15: .line 1138
            goto 17
        16: .line 1139
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Compiler int int java.lang.String java.lang.String com.sun.org.apache.xpath.internal.functions.Function
      StackMap stack: com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException
            pop
        17: .line 1144
      StackMap locals:
      StackMap stack:
            aload 5 /* extension */
            areturn
        end local 5 // com.sun.org.apache.xpath.internal.functions.Function extension
        end local 4 // java.lang.String funcName
        end local 3 // java.lang.String ns
        end local 2 // int endExtFunc
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   18     1       opPos  I
            1   18     2  endExtFunc  I
            3   18     3          ns  Ljava/lang/String;
            6   18     4    funcName  Ljava/lang/String;
            8   18     5   extension  Lcom/sun/org/apache/xpath/internal/functions/Function;
            9   15     6           i  I
           11   14     7   nextOpPos  I
      Exception table:
        from    to  target  type
           8    15      16  Class com.sun.org.apache.xpath.internal.functions.WrongNumberArgsException
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      opPos  

  public void warn(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // java.lang.String msg
        start local 2 // java.lang.Object[] args
         0: .line 1162
            aload 1 /* msg */
            aload 2 /* args */
            invokestatic com.sun.org.apache.xalan.internal.res.XSLMessages.createXPATHWarning:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 3 /* fmsg */
        start local 3 // java.lang.String fmsg
         1: .line 1164
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
            ifnull 4
         2: .line 1166
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* fmsg */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
            invokeinterface javax.xml.transform.ErrorListener.warning:(Ljavax/xml/transform/TransformerException;)V
         3: .line 1167
            goto 9
         4: .line 1170
      StackMap locals: java.lang.String
      StackMap stack:
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            new java.lang.StringBuilder
            dup
            aload 3 /* fmsg */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         5: .line 1171
            ldc "; file "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokeinterface javax.xml.transform.SourceLocator.getSystemId:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         6: .line 1172
            ldc "; line "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokeinterface javax.xml.transform.SourceLocator.getLineNumber:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         7: .line 1173
            ldc "; column "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokeinterface javax.xml.transform.SourceLocator.getColumnNumber:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 1170
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         9: .line 1175
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String fmsg
        end local 2 // java.lang.Object[] args
        end local 1 // java.lang.String msg
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   10     1   msg  Ljava/lang/String;
            0   10     2  args  [Ljava/lang/Object;
            1   10     3  fmsg  Ljava/lang/String;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
      Name  Flags
      msg   
      args  

  public void assertion(boolean, java.lang.String);
    descriptor: (ZLjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // boolean b
        start local 2 // java.lang.String msg
         0: .line 1189
            iload 1 /* b */
            ifne 5
         1: .line 1192
            ldc "ER_INCORRECT_PROGRAMMER_ASSERTION"
         2: .line 1193
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* msg */
            aastore
         3: .line 1191
            invokestatic com.sun.org.apache.xalan.internal.res.XSLMessages.createXPATHMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 3 /* fMsg */
        start local 3 // java.lang.String fMsg
         4: .line 1195
            new java.lang.RuntimeException
            dup
            aload 3 /* fMsg */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // java.lang.String fMsg
         5: .line 1197
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.lang.String msg
        end local 1 // boolean b
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    6     1     b  Z
            0    6     2   msg  Ljava/lang/String;
            4    5     3  fMsg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      b     
      msg   

  public void error(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // java.lang.String msg
        start local 2 // java.lang.Object[] args
         0: .line 1215
            aload 1 /* msg */
            aload 2 /* args */
            invokestatic com.sun.org.apache.xalan.internal.res.XSLMessages.createXPATHMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 3 /* fmsg */
        start local 3 // java.lang.String fmsg
         1: .line 1218
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
            ifnull 4
         2: .line 1220
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_errorHandler:Ljavax/xml/transform/ErrorListener;
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* fmsg */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
            invokeinterface javax.xml.transform.ErrorListener.fatalError:(Ljavax/xml/transform/TransformerException;)V
         3: .line 1221
            goto 5
         4: .line 1229
      StackMap locals: java.lang.String
      StackMap stack:
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* fmsg */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_locator:Ljavax/xml/transform/SourceLocator;
            checkcast com.sun.org.apache.xml.internal.utils.SAXSourceLocator
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
            athrow
         5: .line 1231
      StackMap locals:
      StackMap stack:
            return
        end local 3 // java.lang.String fmsg
        end local 2 // java.lang.Object[] args
        end local 1 // java.lang.String msg
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    6     1   msg  Ljava/lang/String;
            0    6     2  args  [Ljava/lang/Object;
            1    6     3  fmsg  Ljava/lang/String;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
      Name  Flags
      msg   
      args  

  public com.sun.org.apache.xml.internal.utils.PrefixResolver getNamespaceContext();
    descriptor: ()Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
         0: .line 1245
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_currentPrefixResolver:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
            areturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;

  public void setNamespaceContext(com.sun.org.apache.xml.internal.utils.PrefixResolver);
    descriptor: (Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
        start local 1 // com.sun.org.apache.xml.internal.utils.PrefixResolver pr
         0: .line 1255
            aload 0 /* this */
            aload 1 /* pr */
            putfield com.sun.org.apache.xpath.internal.compiler.Compiler.m_currentPrefixResolver:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
         1: .line 1256
            return
        end local 1 // com.sun.org.apache.xml.internal.utils.PrefixResolver pr
        end local 0 // com.sun.org.apache.xpath.internal.compiler.Compiler this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0    2     1    pr  Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
    MethodParameters:
      Name  Flags
      pr    
}
SourceFile: "Compiler.java"