public class com.sun.org.apache.xpath.internal.compiler.XPathParser
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xpath.internal.compiler.XPathParser
  super_class: java.lang.Object
{
  public static final java.lang.String CONTINUE_AFTER_FATAL_ERROR;
    descriptor: Ljava/lang/String;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: "CONTINUE_AFTER_FATAL_ERROR"

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

  transient java.lang.String m_token;
    descriptor: Ljava/lang/String;
    flags: (0x0080) ACC_TRANSIENT

  transient char m_tokenChar;
    descriptor: C
    flags: (0x0080) ACC_TRANSIENT

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

  protected static final int FILTER_MATCH_FAILED;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  protected static final int FILTER_MATCH_PRIMARY;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  protected static final int FILTER_MATCH_PREDICATES;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  com.sun.org.apache.xml.internal.utils.PrefixResolver m_namespaceContext;
    descriptor: Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
    flags: (0x0000) 

  private javax.xml.transform.ErrorListener m_errorListener;
    descriptor: Ljavax/xml/transform/ErrorListener;
    flags: (0x0002) ACC_PRIVATE

  javax.xml.transform.SourceLocator m_sourceLocator;
    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

  public void <init>(javax.xml.transform.ErrorListener, javax.xml.transform.SourceLocator);
    descriptor: (Ljavax/xml/transform/ErrorListener;Ljavax/xml/transform/SourceLocator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // javax.xml.transform.ErrorListener errorListener
        start local 2 // javax.xml.transform.SourceLocator sourceLocator
         0: .line 77
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 60
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         2: .line 65
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
         3: .line 79
            aload 0 /* this */
            aload 1 /* errorListener */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_errorListener:Ljavax/xml/transform/ErrorListener;
         4: .line 80
            aload 0 /* this */
            aload 2 /* sourceLocator */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_sourceLocator:Ljavax/xml/transform/SourceLocator;
         5: .line 81
            return
        end local 2 // javax.xml.transform.SourceLocator sourceLocator
        end local 1 // javax.xml.transform.ErrorListener errorListener
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    6     1  errorListener  Ljavax/xml/transform/ErrorListener;
            0    6     2  sourceLocator  Ljavax/xml/transform/SourceLocator;
    MethodParameters:
               Name  Flags
      errorListener  
      sourceLocator  

  public void initXPath(com.sun.org.apache.xpath.internal.compiler.Compiler, java.lang.String, com.sun.org.apache.xml.internal.utils.PrefixResolver);
    descriptor: (Lcom/sun/org/apache/xpath/internal/compiler/Compiler;Ljava/lang/String;Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // com.sun.org.apache.xpath.internal.compiler.Compiler compiler
        start local 2 // java.lang.String expression
        start local 3 // com.sun.org.apache.xml.internal.utils.PrefixResolver namespaceContext
         0: .line 105
            aload 0 /* this */
            aload 1 /* compiler */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
         1: .line 106
            aload 0 /* this */
            aload 3 /* namespaceContext */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_namespaceContext:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
         2: .line 107
            aload 0 /* this */
            aload 1 /* compiler */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getFunctionTable:()Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
         3: .line 109
            new com.sun.org.apache.xpath.internal.compiler.Lexer
            dup
            aload 1 /* compiler */
            aload 3 /* namespaceContext */
            aload 0 /* this */
            invokespecial com.sun.org.apache.xpath.internal.compiler.Lexer.<init>:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;)V
            astore 4 /* lexer */
        start local 4 // com.sun.org.apache.xpath.internal.compiler.Lexer lexer
         4: .line 111
            aload 4 /* lexer */
            aload 2 /* expression */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Lexer.tokenize:(Ljava/lang/String;)V
         5: .line 113
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_0
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 114
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            iconst_2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 127
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 128
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         9: .line 130
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 26
        10: .line 132
            ldc ""
            astore 5 /* extraTokens */
        start local 5 // java.lang.String extraTokens
        11: .line 134
            goto 16
        12: .line 136
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Lexer java.lang.String
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 5 /* extraTokens */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* extraTokens */
        13: .line 138
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        14: .line 140
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 16
        15: .line 141
            new java.lang.StringBuilder
            dup
            aload 5 /* extraTokens */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* extraTokens */
        16: .line 134
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnonnull 12
        17: .line 144
            aload 0 /* this */
            ldc "ER_EXTRA_ILLEGAL_TOKENS"
        18: .line 145
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* extraTokens */
            aastore
        19: .line 144
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        end local 5 // java.lang.String extraTokens
        20: .line 148
            goto 26
        21: .line 149
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser com.sun.org.apache.xpath.internal.compiler.Compiler java.lang.String com.sun.org.apache.xml.internal.utils.PrefixResolver com.sun.org.apache.xpath.internal.compiler.Lexer
      StackMap stack: com.sun.org.apache.xpath.internal.XPathProcessorException
            astore 5 /* e */
        start local 5 // com.sun.org.apache.xpath.internal.XPathProcessorException e
        22: .line 151
            ldc "CONTINUE_AFTER_FATAL_ERROR"
            aload 5 /* e */
            invokevirtual com.sun.org.apache.xpath.internal.XPathProcessorException.getMessage:()Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 25
        23: .line 156
            aload 0 /* this */
            aload 1 /* compiler */
            ldc "/.."
            aload 3 /* namespaceContext */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.initXPath:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;Ljava/lang/String;Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;)V
        24: .line 157
            goto 26
        25: .line 159
      StackMap locals: com.sun.org.apache.xpath.internal.XPathProcessorException
      StackMap stack:
            aload 5 /* e */
            athrow
        end local 5 // com.sun.org.apache.xpath.internal.XPathProcessorException e
        26: .line 162
      StackMap locals:
      StackMap stack:
            aload 1 /* compiler */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.shrink:()V
        27: .line 163
            return
        end local 4 // com.sun.org.apache.xpath.internal.compiler.Lexer lexer
        end local 3 // com.sun.org.apache.xml.internal.utils.PrefixResolver namespaceContext
        end local 2 // java.lang.String expression
        end local 1 // com.sun.org.apache.xpath.internal.compiler.Compiler compiler
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   28     0              this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   28     1          compiler  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   28     2        expression  Ljava/lang/String;
            0   28     3  namespaceContext  Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
            4   28     4             lexer  Lcom/sun/org/apache/xpath/internal/compiler/Lexer;
           11   20     5       extraTokens  Ljava/lang/String;
           22   26     5                 e  Lcom/sun/org/apache/xpath/internal/XPathProcessorException;
      Exception table:
        from    to  target  type
           7    20      21  Class com.sun.org.apache.xpath.internal.XPathProcessorException
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
                  Name  Flags
      compiler          
      expression        
      namespaceContext  

  public void initMatchPattern(com.sun.org.apache.xpath.internal.compiler.Compiler, java.lang.String, com.sun.org.apache.xml.internal.utils.PrefixResolver);
    descriptor: (Lcom/sun/org/apache/xpath/internal/compiler/Compiler;Ljava/lang/String;Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // com.sun.org.apache.xpath.internal.compiler.Compiler compiler
        start local 2 // java.lang.String expression
        start local 3 // com.sun.org.apache.xml.internal.utils.PrefixResolver namespaceContext
         0: .line 181
            aload 0 /* this */
            aload 1 /* compiler */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
         1: .line 182
            aload 0 /* this */
            aload 3 /* namespaceContext */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_namespaceContext:Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
         2: .line 183
            aload 0 /* this */
            aload 1 /* compiler */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.getFunctionTable:()Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
         3: .line 185
            new com.sun.org.apache.xpath.internal.compiler.Lexer
            dup
            aload 1 /* compiler */
            aload 3 /* namespaceContext */
            aload 0 /* this */
            invokespecial com.sun.org.apache.xpath.internal.compiler.Lexer.<init>:(Lcom/sun/org/apache/xpath/internal/compiler/Compiler;Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;)V
            astore 4 /* lexer */
        start local 4 // com.sun.org.apache.xpath.internal.compiler.Lexer lexer
         4: .line 187
            aload 4 /* lexer */
            aload 2 /* expression */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Lexer.tokenize:(Ljava/lang/String;)V
         5: .line 189
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_0
            bipush 30
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 190
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            iconst_2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 192
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 193
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Pattern:()V
         9: .line 195
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 20
        10: .line 197
            ldc ""
            astore 5 /* extraTokens */
        start local 5 // java.lang.String extraTokens
        11: .line 199
            goto 16
        12: .line 201
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.Lexer java.lang.String
      StackMap stack:
            new java.lang.StringBuilder
            dup
            aload 5 /* extraTokens */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* extraTokens */
        13: .line 203
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        14: .line 205
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 16
        15: .line 206
            new java.lang.StringBuilder
            dup
            aload 5 /* extraTokens */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 5 /* extraTokens */
        16: .line 199
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnonnull 12
        17: .line 209
            aload 0 /* this */
            ldc "ER_EXTRA_ILLEGAL_TOKENS"
        18: .line 210
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* extraTokens */
            aastore
        19: .line 209
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        end local 5 // java.lang.String extraTokens
        20: .line 214
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        21: .line 215
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        22: .line 217
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.shrink:()V
        23: .line 218
            return
        end local 4 // com.sun.org.apache.xpath.internal.compiler.Lexer lexer
        end local 3 // com.sun.org.apache.xml.internal.utils.PrefixResolver namespaceContext
        end local 2 // java.lang.String expression
        end local 1 // com.sun.org.apache.xpath.internal.compiler.Compiler compiler
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   24     0              this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   24     1          compiler  Lcom/sun/org/apache/xpath/internal/compiler/Compiler;
            0   24     2        expression  Ljava/lang/String;
            0   24     3  namespaceContext  Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
            4   24     4             lexer  Lcom/sun/org/apache/xpath/internal/compiler/Lexer;
           11   20     5       extraTokens  Ljava/lang/String;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
                  Name  Flags
      compiler          
      expression        
      namespaceContext  

  public void setErrorHandler(javax.xml.transform.ErrorListener);
    descriptor: (Ljavax/xml/transform/ErrorListener;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // javax.xml.transform.ErrorListener handler
         0: .line 240
            aload 0 /* this */
            aload 1 /* handler */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_errorListener:Ljavax/xml/transform/ErrorListener;
         1: .line 241
            return
        end local 1 // javax.xml.transform.ErrorListener handler
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    2     1  handler  Ljavax/xml/transform/ErrorListener;
    MethodParameters:
         Name  Flags
      handler  

  public javax.xml.transform.ErrorListener getErrorListener();
    descriptor: ()Ljavax/xml/transform/ErrorListener;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 250
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_errorListener:Ljavax/xml/transform/ErrorListener;
            areturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;

  final boolean tokenIs(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String s
         0: .line 263
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aload 1 /* s */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            goto 3
      StackMap locals:
      StackMap stack:
         1: aload 1 /* s */
            ifnonnull 2
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.lang.String s
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    4     1     s  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     

  final boolean tokenIs(char);
    descriptor: (C)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // char c
         0: .line 276
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 2
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            iload 1 /* c */
            if_icmpne 1
            iconst_1
            goto 3
      StackMap locals:
      StackMap stack:
         1: iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: iconst_0
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // char c
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    4     1     c  C
    MethodParameters:
      Name  Flags
      c     

  final boolean lookahead(char, int);
    descriptor: (CI)Z
    flags: (0x0010) ACC_FINAL
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // char c
        start local 2 // int n
         0: .line 292
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 2 /* n */
            iadd
            istore 3 /* pos */
        start local 3 // int pos
         1: .line 295
            iload 3 /* pos */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmpgt 9
            iload 3 /* pos */
            ifle 9
         2: .line 296
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            ifeq 9
         3: .line 298
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            iload 3 /* pos */
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* tok */
        start local 5 // java.lang.String tok
         4: .line 300
            aload 5 /* tok */
            invokevirtual java.lang.String.length:()I
            iconst_1
            if_icmpne 6
            aload 5 /* tok */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            iload 1 /* c */
            if_icmpne 5
            iconst_1
            goto 7
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int int top java.lang.String
      StackMap stack:
         5: iconst_0
            goto 7
      StackMap locals:
      StackMap stack:
         6: iconst_0
      StackMap locals:
      StackMap stack: int
         7: istore 4 /* b */
        end local 5 // java.lang.String tok
        start local 4 // boolean b
         8: .line 301
            goto 10
        end local 4 // boolean b
         9: .line 304
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int int
      StackMap stack:
            iconst_0
            istore 4 /* b */
        start local 4 // boolean b
        10: .line 307
      StackMap locals: int
      StackMap stack:
            iload 4 /* b */
            ireturn
        end local 4 // boolean b
        end local 3 // int pos
        end local 2 // int n
        end local 1 // char c
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   11     1     c  C
            0   11     2     n  I
            1   11     3   pos  I
            8    9     4     b  Z
           10   11     4     b  Z
            4    8     5   tok  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      c     
      n     

  private final boolean lookbehind(char, int);
    descriptor: (CI)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // char c
        start local 2 // int n
         0: .line 328
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 2 /* n */
            iconst_1
            iadd
            isub
            istore 4 /* lookBehindPos */
        start local 4 // int lookBehindPos
         1: .line 330
            iload 4 /* lookBehindPos */
            iflt 14
         2: .line 332
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            iload 4 /* lookBehindPos */
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* lookbehind */
        start local 5 // java.lang.String lookbehind
         3: .line 334
            aload 5 /* lookbehind */
            invokevirtual java.lang.String.length:()I
            iconst_1
            if_icmpne 12
         4: .line 336
            aload 5 /* lookbehind */
            ifnonnull 5
            bipush 124
            goto 6
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int top int java.lang.String
      StackMap stack:
         5: aload 5 /* lookbehind */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
      StackMap locals:
      StackMap stack: int
         6: istore 6 /* c0 */
        start local 6 // char c0
         7: .line 338
            iload 6 /* c0 */
            bipush 124
            if_icmpne 8
            iconst_0
            goto 10
      StackMap locals: int
      StackMap stack:
         8: iload 6 /* c0 */
            iload 1 /* c */
            if_icmpne 9
            iconst_1
            goto 10
      StackMap locals:
      StackMap stack:
         9: iconst_0
      StackMap locals:
      StackMap stack: int
        10: istore 3 /* isToken */
        end local 6 // char c0
        start local 3 // boolean isToken
        11: .line 339
            goto 15
        end local 3 // boolean isToken
        12: .line 342
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* isToken */
        end local 5 // java.lang.String lookbehind
        start local 3 // boolean isToken
        13: .line 344
            goto 15
        end local 3 // boolean isToken
        14: .line 347
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* isToken */
        start local 3 // boolean isToken
        15: .line 350
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int int int
      StackMap stack:
            iload 3 /* isToken */
            ireturn
        end local 4 // int lookBehindPos
        end local 3 // boolean isToken
        end local 2 // int n
        end local 1 // char c
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   16     0           this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   16     1              c  C
            0   16     2              n  I
           11   12     3        isToken  Z
           13   14     3        isToken  Z
           15   16     3        isToken  Z
            1   16     4  lookBehindPos  I
            3   13     5     lookbehind  Ljava/lang/String;
            7   11     6             c0  C
    MethodParameters:
      Name  Flags
      c     
      n     

  private final boolean lookbehindHasToken(int);
    descriptor: (I)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int n
         0: .line 370
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 1 /* n */
            isub
            ifle 9
         1: .line 372
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 1 /* n */
            iconst_1
            isub
            isub
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 3 /* lookbehind */
        start local 3 // java.lang.String lookbehind
         2: .line 373
            aload 3 /* lookbehind */
            ifnonnull 3
            bipush 124
            goto 4
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int top java.lang.String
      StackMap stack:
         3: aload 3 /* lookbehind */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
      StackMap locals:
      StackMap stack: int
         4: istore 4 /* c0 */
        start local 4 // char c0
         5: .line 375
            iload 4 /* c0 */
            bipush 124
            if_icmpne 6
            iconst_0
            goto 7
      StackMap locals: int
      StackMap stack:
         6: iconst_1
      StackMap locals:
      StackMap stack: int
         7: istore 2 /* hasToken */
        end local 4 // char c0
        end local 3 // java.lang.String lookbehind
        start local 2 // boolean hasToken
         8: .line 376
            goto 10
        end local 2 // boolean hasToken
         9: .line 379
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int
      StackMap stack:
            iconst_0
            istore 2 /* hasToken */
        start local 2 // boolean hasToken
        10: .line 382
      StackMap locals: int
      StackMap stack:
            iload 2 /* hasToken */
            ireturn
        end local 2 // boolean hasToken
        end local 1 // int n
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   11     1           n  I
            8    9     2    hasToken  Z
           10   11     2    hasToken  Z
            2    8     3  lookbehind  Ljava/lang/String;
            5    8     4          c0  C
    MethodParameters:
      Name  Flags
      n     

  private final boolean lookahead(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Z
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String s
        start local 2 // int n
         0: .line 401
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 2 /* n */
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmpgt 7
         1: .line 403
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 2 /* n */
            iconst_1
            isub
            iadd
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* lookahead */
        start local 4 // java.lang.String lookahead
         2: .line 405
            aload 4 /* lookahead */
            ifnull 3
            aload 4 /* lookahead */
            aload 1 /* s */
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            goto 5
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String int top java.lang.String
      StackMap stack:
         3: aload 1 /* s */
            ifnonnull 4
            iconst_1
            goto 5
      StackMap locals:
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* isToken */
        end local 4 // java.lang.String lookahead
        start local 3 // boolean isToken
         6: .line 406
            goto 10
        end local 3 // boolean isToken
         7: .line 409
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String int
      StackMap stack:
            aload 1 /* s */
            ifnonnull 8
            iconst_1
            goto 9
      StackMap locals:
      StackMap stack:
         8: iconst_0
      StackMap locals:
      StackMap stack: int
         9: istore 3 /* isToken */
        start local 3 // boolean isToken
        10: .line 412
      StackMap locals: int
      StackMap stack:
            iload 3 /* isToken */
            ireturn
        end local 3 // boolean isToken
        end local 2 // int n
        end local 1 // java.lang.String s
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   11     1          s  Ljava/lang/String;
            0   11     2          n  I
            6    7     3    isToken  Z
           10   11     3    isToken  Z
            2    6     4  lookahead  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      s     
      n     

  private final void nextToken();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 422
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmpge 4
         1: .line 424
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            dup_x1
            iconst_1
            iadd
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
         2: .line 425
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         3: .line 426
            goto 6
         4: .line 429
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
         5: .line 430
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         6: .line 432
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;

  private final java.lang.String getTokenRelative(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int i
         0: .line 446
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 1 /* i */
            iadd
            istore 3 /* relative */
        start local 3 // int relative
         1: .line 448
            iload 3 /* relative */
            ifle 4
            iload 3 /* relative */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmpge 4
         2: .line 450
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            iload 3 /* relative */
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 2 /* tok */
        start local 2 // java.lang.String tok
         3: .line 451
            goto 5
        end local 2 // java.lang.String tok
         4: .line 454
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int top int
      StackMap stack:
            aconst_null
            astore 2 /* tok */
        start local 2 // java.lang.String tok
         5: .line 457
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int java.lang.String int
      StackMap stack:
            aload 2 /* tok */
            areturn
        end local 3 // int relative
        end local 2 // java.lang.String tok
        end local 1 // int i
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    6     1         i  I
            3    4     2       tok  Ljava/lang/String;
            5    6     2       tok  Ljava/lang/String;
            1    6     3  relative  I
    MethodParameters:
      Name  Flags
      i     

  private final void prevToken();
    descriptor: ()V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 467
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            ifle 5
         1: .line 469
            aload 0 /* this */
            dup
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
         2: .line 471
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
         3: .line 472
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         4: .line 473
            goto 7
         5: .line 476
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
         6: .line 477
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         7: .line 479
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;

  private final void consumeExpected(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String expected
         0: .line 493
            aload 0 /* this */
            aload 1 /* expected */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 3
         1: .line 495
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 496
            goto 7
         3: .line 499
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_EXPECTED_BUT_FOUND"
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* expected */
            aastore
            dup
            iconst_1
         4: .line 500
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         5: .line 499
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         6: .line 505
            new com.sun.org.apache.xpath.internal.XPathProcessorException
            dup
            ldc "CONTINUE_AFTER_FATAL_ERROR"
            invokespecial com.sun.org.apache.xpath.internal.XPathProcessorException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 507
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String expected
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    8     1  expected  Ljava/lang/String;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
          Name  Flags
      expected  

  private final void consumeExpected(char);
    descriptor: (C)V
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // char expected
         0: .line 521
            aload 0 /* this */
            iload 1 /* expected */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 3
         1: .line 523
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 524
            goto 8
         3: .line 527
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_EXPECTED_BUT_FOUND"
         4: .line 528
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            iload 1 /* expected */
            invokestatic java.lang.String.valueOf:(C)Ljava/lang/String;
            aastore
            dup
            iconst_1
         5: .line 529
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         6: .line 527
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 534
            new com.sun.org.apache.xpath.internal.XPathProcessorException
            dup
            ldc "CONTINUE_AFTER_FATAL_ERROR"
            invokespecial com.sun.org.apache.xpath.internal.XPathProcessorException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 536
      StackMap locals:
      StackMap stack:
            return
        end local 1 // char expected
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    9     1  expected  C
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
          Name  Flags
      expected  

  void warn(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String msg
        start local 2 // java.lang.Object[] args
         0: .line 553
            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 554
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.getErrorListener:()Ljavax/xml/transform/ErrorListener;
            astore 4 /* ehandler */
        start local 4 // javax.xml.transform.ErrorListener ehandler
         2: .line 556
            aload 4 /* ehandler */
            ifnull 5
         3: .line 559
            aload 4 /* ehandler */
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* fmsg */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_sourceLocator: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
         4: .line 560
            goto 6
         5: .line 564
      StackMap locals: java.lang.String javax.xml.transform.ErrorListener
      StackMap stack:
            getstatic java.lang.System.err:Ljava/io/PrintStream;
            aload 3 /* fmsg */
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         6: .line 566
      StackMap locals:
      StackMap stack:
            return
        end local 4 // javax.xml.transform.ErrorListener ehandler
        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.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    7     1       msg  Ljava/lang/String;
            0    7     2      args  [Ljava/lang/Object;
            1    7     3      fmsg  Ljava/lang/String;
            2    7     4  ehandler  Ljavax/xml/transform/ErrorListener;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
      Name  Flags
      msg   
      args  

  private void assertion(boolean, java.lang.String);
    descriptor: (ZLjava/lang/String;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // boolean b
        start local 2 // java.lang.String msg
         0: .line 580
            iload 1 /* b */
            ifne 5
         1: .line 583
            ldc "ER_INCORRECT_PROGRAMMER_ASSERTION"
         2: .line 584
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* msg */
            aastore
         3: .line 582
            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 586
            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 588
      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.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    6     1     b  Z
            0    6     2   msg  Ljava/lang/String;
            4    5     3  fMsg  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      b     
      msg   

  void error(java.lang.String, java.lang.Object[]);
    descriptor: (Ljava/lang/String;[Ljava/lang/Object;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String msg
        start local 2 // java.lang.Object[] args
         0: .line 606
            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 607
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.getErrorListener:()Ljavax/xml/transform/ErrorListener;
            astore 4 /* ehandler */
        start local 4 // javax.xml.transform.ErrorListener ehandler
         2: .line 609
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* fmsg */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_sourceLocator:Ljavax/xml/transform/SourceLocator;
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
            astore 5 /* te */
        start local 5 // javax.xml.transform.TransformerException te
         3: .line 610
            aload 4 /* ehandler */
            ifnull 6
         4: .line 613
            aload 4 /* ehandler */
            aload 5 /* te */
            invokeinterface javax.xml.transform.ErrorListener.fatalError:(Ljavax/xml/transform/TransformerException;)V
         5: .line 614
            goto 7
         6: .line 618
      StackMap locals: java.lang.String javax.xml.transform.ErrorListener javax.xml.transform.TransformerException
      StackMap stack:
            aload 5 /* te */
            athrow
         7: .line 620
      StackMap locals:
      StackMap stack:
            return
        end local 5 // javax.xml.transform.TransformerException te
        end local 4 // javax.xml.transform.ErrorListener ehandler
        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.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    8     1       msg  Ljava/lang/String;
            0    8     2      args  [Ljava/lang/Object;
            1    8     3      fmsg  Ljava/lang/String;
            2    8     4  ehandler  Ljavax/xml/transform/ErrorListener;
            3    8     5        te  Ljavax/xml/transform/TransformerException;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
      Name  Flags
      msg   
      args  

  protected java.lang.String dumpRemainingTokenQueue();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 632
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            istore 1 /* q */
        start local 1 // int q
         1: .line 635
            iload 1 /* q */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmpge 9
         2: .line 637
            ldc "\n Remaining tokens: ("
            astore 3 /* msg */
        start local 3 // java.lang.String msg
         3: .line 639
            goto 6
         4: .line 641
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int top java.lang.String
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            iload 1 /* q */
            iinc 1 /* q */ 1
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.elementAt:(I)Ljava/lang/Object;
            checkcast java.lang.String
            astore 4 /* t */
        start local 4 // java.lang.String t
         5: .line 643
            new java.lang.StringBuilder
            dup
            aload 3 /* msg */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " '"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* t */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "'"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 3 /* msg */
        end local 4 // java.lang.String t
         6: .line 639
      StackMap locals:
      StackMap stack:
            iload 1 /* q */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getTokenQueueSize:()I
            if_icmplt 4
         7: .line 646
            new java.lang.StringBuilder
            dup
            aload 3 /* msg */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            astore 2 /* returnMsg */
        end local 3 // java.lang.String msg
        start local 2 // java.lang.String returnMsg
         8: .line 647
            goto 10
        end local 2 // java.lang.String returnMsg
         9: .line 650
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int
      StackMap stack:
            ldc ""
            astore 2 /* returnMsg */
        start local 2 // java.lang.String returnMsg
        10: .line 653
      StackMap locals: java.lang.String
      StackMap stack:
            aload 2 /* returnMsg */
            areturn
        end local 2 // java.lang.String returnMsg
        end local 1 // int q
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   11     0       this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   11     1          q  I
            8    9     2  returnMsg  Ljava/lang/String;
           10   11     2  returnMsg  Ljava/lang/String;
            3    8     3        msg  Ljava/lang/String;
            5    6     4          t  Ljava/lang/String;

  final int getFunctionToken(java.lang.String);
    descriptor: (Ljava/lang/String;)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // java.lang.String key
         0: .line 675
            aload 1 /* key */
            invokestatic com.sun.org.apache.xpath.internal.compiler.Keywords.lookupNodeTest:(Ljava/lang/String;)Ljava/lang/Integer;
            astore 3 /* id */
        start local 3 // java.lang.Integer id
         1: .line 676
            aload 3 /* id */
            ifnonnull 2
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_functionTable:Lcom/sun/org/apache/xpath/internal/compiler/FunctionTable;
            aload 1 /* key */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.FunctionTable.getFunctionID:(Ljava/lang/String;)Ljava/lang/Integer;
            astore 3 /* id */
         2: .line 677
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String top java.lang.Integer
      StackMap stack:
            aload 3 /* id */
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* tok */
        start local 2 // int tok
         3: .line 678
            goto 9
        end local 3 // java.lang.Integer id
        end local 2 // int tok
         4: .line 679
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String
      StackMap stack: java.lang.NullPointerException
            pop
         5: .line 681
            iconst_m1
            istore 2 /* tok */
        start local 2 // int tok
         6: goto 9
        end local 2 // int tok
         7: .line 683
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
            pop
         8: .line 685
            iconst_m1
            istore 2 /* tok */
        start local 2 // int tok
         9: .line 688
      StackMap locals: int
      StackMap stack:
            iload 2 /* tok */
            ireturn
        end local 2 // int tok
        end local 1 // java.lang.String key
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   10     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   10     1   key  Ljava/lang/String;
            3    4     2   tok  I
            6    7     2   tok  I
            9   10     2   tok  I
            1    4     3    id  Ljava/lang/Integer;
      Exception table:
        from    to  target  type
           0     3       4  Class java.lang.NullPointerException
           0     3       7  Class java.lang.ClassCastException
    MethodParameters:
      Name  Flags
      key   

  void insertOp(int, int, int);
    descriptor: (III)V
    flags: (0x0000) 
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int pos
        start local 2 // int length
        start local 3 // int op
         0: .line 703
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 4 /* totalLen */
        start local 4 // int totalLen
         1: .line 705
            iload 4 /* totalLen */
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 707
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 5 /* i */
            iload 2 /* length */
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 5 /* i */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         4: .line 705
            iinc 5 /* i */ -1
      StackMap locals:
      StackMap stack:
         5: iload 5 /* i */
            iload 1 /* pos */
            if_icmpge 3
        end local 5 // int i
         6: .line 710
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* pos */
            iload 3 /* op */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 711
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            iload 4 /* totalLen */
            iload 2 /* length */
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         8: .line 712
            return
        end local 4 // int totalLen
        end local 3 // int op
        end local 2 // int length
        end local 1 // int pos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    9     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    9     1       pos  I
            0    9     2    length  I
            0    9     3        op  I
            1    9     4  totalLen  I
            2    6     5         i  I
    MethodParameters:
        Name  Flags
      pos     
      length  
      op      

  void appendOp(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int length
        start local 2 // int op
         0: .line 725
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 3 /* totalLen */
        start local 3 // int totalLen
         1: .line 727
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 3 /* totalLen */
            iload 2 /* op */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         2: .line 728
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 3 /* totalLen */
            iconst_1
            iadd
            iload 1 /* length */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         3: .line 729
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            iload 3 /* totalLen */
            iload 1 /* length */
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         4: .line 730
            return
        end local 3 // int totalLen
        end local 2 // int op
        end local 1 // int length
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    5     1    length  I
            0    5     2        op  I
            1    5     3  totalLen  I
    MethodParameters:
        Name  Flags
      length  
      op      

  protected void Expr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 744
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.OrExpr:()V
         1: .line 745
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void OrExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 759
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 761
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AndExpr:()V
         2: .line 763
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 9
            aload 0 /* this */
            ldc "or"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 9
         3: .line 765
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 766
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iconst_2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         5: .line 767
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.OrExpr:()V
         6: .line 769
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         7: .line 770
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         8: .line 769
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         9: .line 772
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   10     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void AndExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 786
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 788
            aload 0 /* this */
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            pop
         2: .line 790
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 9
            aload 0 /* this */
            ldc "and"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 9
         3: .line 792
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 793
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iconst_3
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         5: .line 794
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AndExpr:()V
         6: .line 796
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         7: .line 797
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         8: .line 796
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         9: .line 799
      StackMap locals: int
      StackMap stack:
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   10     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected int EqualityExpr(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int addPos
         0: .line 819
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 821
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 822
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 824
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelationalExpr:(I)I
            pop
         4: .line 826
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 25
         5: .line 828
            aload 0 /* this */
            bipush 33
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 16
            aload 0 /* this */
            bipush 61
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 16
         6: .line 830
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 831
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 832
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         9: .line 834
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        10: .line 836
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            istore 1 /* addPos */
        11: .line 837
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        12: .line 838
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        13: .line 837
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        14: .line 839
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        15: .line 840
            goto 25
        16: .line 841
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 61
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 25
        17: .line 843
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        18: .line 844
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            iconst_5
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        19: .line 846
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        20: .line 848
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            istore 1 /* addPos */
        21: .line 849
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        22: .line 850
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        23: .line 849
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        24: .line 851
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        25: .line 855
      StackMap locals:
      StackMap stack:
            iload 1 /* addPos */
            ireturn
        end local 2 // int opPos
        end local 1 // int addPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   26     0               this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   26     1             addPos  I
            1   26     2              opPos  I
           10   15     3  opPlusLeftHandLen  I
           20   25     3  opPlusLeftHandLen  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
        Name  Flags
      addPos  

  protected int RelationalExpr(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int addPos
         0: .line 879
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 881
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 882
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 884
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AdditiveExpr:(I)I
            pop
         4: .line 886
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 32
         5: .line 888
            aload 0 /* this */
            bipush 60
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 19
         6: .line 890
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 892
            aload 0 /* this */
            bipush 61
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 11
         8: .line 894
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 895
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 6
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        10: .line 896
            goto 12
        11: .line 899
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 7
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        12: .line 902
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        13: .line 904
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelationalExpr:(I)I
            istore 1 /* addPos */
        14: .line 905
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        15: .line 906
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        16: .line 905
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        17: .line 907
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        18: .line 908
            goto 32
        19: .line 909
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 62
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 32
        20: .line 911
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        21: .line 913
            aload 0 /* this */
            bipush 61
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 25
        22: .line 915
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        23: .line 916
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 8
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        24: .line 917
            goto 26
        25: .line 920
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 9
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        26: .line 923
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        27: .line 925
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelationalExpr:(I)I
            istore 1 /* addPos */
        28: .line 926
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        29: .line 927
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        30: .line 926
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        31: .line 928
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        32: .line 932
      StackMap locals:
      StackMap stack:
            iload 1 /* addPos */
            ireturn
        end local 2 // int opPos
        end local 1 // int addPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   33     0               this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   33     1             addPos  I
            1   33     2              opPos  I
           13   18     3  opPlusLeftHandLen  I
           27   32     3  opPlusLeftHandLen  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
        Name  Flags
      addPos  

  protected int AdditiveExpr(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int addPos
         0: .line 954
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 956
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 957
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 959
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            pop
         4: .line 961
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 24
         5: .line 963
            aload 0 /* this */
            bipush 43
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 15
         6: .line 965
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 966
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 10
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 968
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
         9: .line 970
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AdditiveExpr:(I)I
            istore 1 /* addPos */
        10: .line 971
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        11: .line 972
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        12: .line 971
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 973
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        14: .line 974
            goto 24
        15: .line 975
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 45
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 24
        16: .line 977
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 978
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 11
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        18: .line 980
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        19: .line 982
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AdditiveExpr:(I)I
            istore 1 /* addPos */
        20: .line 983
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        21: .line 984
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        22: .line 983
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        23: .line 985
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        24: .line 989
      StackMap locals:
      StackMap stack:
            iload 1 /* addPos */
            ireturn
        end local 2 // int opPos
        end local 1 // int addPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   25     0               this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   25     1             addPos  I
            1   25     2              opPos  I
            9   14     3  opPlusLeftHandLen  I
           19   24     3  opPlusLeftHandLen  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
        Name  Flags
      addPos  

  protected int MultiplicativeExpr(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int addPos
         0: .line 1012
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 1014
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 1015
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 1017
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.UnaryExpr:()V
         4: .line 1019
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 44
         5: .line 1021
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 15
         6: .line 1023
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 1024
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 12
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 1026
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
         9: .line 1028
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        10: .line 1029
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        11: .line 1030
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        12: .line 1029
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 1031
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        14: .line 1032
            goto 44
        15: .line 1033
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "div"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 25
        16: .line 1035
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 1036
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 13
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        18: .line 1038
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        19: .line 1040
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        20: .line 1041
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        21: .line 1042
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        22: .line 1041
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        23: .line 1043
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        24: .line 1044
            goto 44
        25: .line 1045
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "mod"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 35
        26: .line 1047
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        27: .line 1048
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 14
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        28: .line 1050
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        29: .line 1052
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        30: .line 1053
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        31: .line 1054
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        32: .line 1053
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        33: .line 1055
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        34: .line 1056
            goto 44
        35: .line 1057
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "quo"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 44
        36: .line 1059
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        37: .line 1060
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 15
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        38: .line 1062
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* addPos */
            isub
            istore 3 /* opPlusLeftHandLen */
        start local 3 // int opPlusLeftHandLen
        39: .line 1064
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        40: .line 1065
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iconst_1
            iadd
        41: .line 1066
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* addPos */
            iload 3 /* opPlusLeftHandLen */
            iadd
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* opPlusLeftHandLen */
            iadd
        42: .line 1065
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        43: .line 1067
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        44: .line 1071
      StackMap locals:
      StackMap stack:
            iload 1 /* addPos */
            ireturn
        end local 2 // int opPos
        end local 1 // int addPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   45     0               this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   45     1             addPos  I
            1   45     2              opPos  I
            9   14     3  opPlusLeftHandLen  I
           19   24     3  opPlusLeftHandLen  I
           29   34     3  opPlusLeftHandLen  I
           39   44     3  opPlusLeftHandLen  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
        Name  Flags
      addPos  

  protected void UnaryExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1085
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1086
            iconst_0
            istore 2 /* isNeg */
        start local 2 // boolean isNeg
         2: .line 1088
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 45
            if_icmpne 6
         3: .line 1090
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1091
            aload 0 /* this */
            iconst_2
            bipush 16
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 1093
            iconst_1
            istore 2 /* isNeg */
         6: .line 1096
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.UnionExpr:()V
         7: .line 1098
            iload 2 /* isNeg */
            ifeq 11
         8: .line 1099
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         9: .line 1100
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        10: .line 1099
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1101
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean isNeg
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   12     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   12     1  opPos  I
            2   12     2  isNeg  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void StringExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1113
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1115
            aload 0 /* this */
            iconst_2
            bipush 17
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1116
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1118
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         4: .line 1119
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         5: .line 1118
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1120
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    7     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void BooleanExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1133
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1135
            aload 0 /* this */
            iconst_2
            bipush 18
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1136
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1138
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
            istore 2 /* opLen */
        start local 2 // int opLen
         4: .line 1140
            iload 2 /* opLen */
            iconst_2
            if_icmpne 6
         5: .line 1142
            aload 0 /* this */
            ldc "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         6: .line 1145
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iload 2 /* opLen */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1146
            return
        end local 2 // int opLen
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    8     1  opPos  I
            4    8     2  opLen  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void NumberExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1159
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1161
            aload 0 /* this */
            iconst_2
            bipush 19
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1162
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1164
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         4: .line 1165
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         5: .line 1164
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1166
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    7     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void UnionExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1184
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1185
            iconst_1
            istore 2 /* continueOrLoop */
        start local 2 // boolean continueOrLoop
         2: .line 1186
            iconst_0
            istore 3 /* foundUnion */
        start local 3 // boolean foundUnion
         3: .line 1190
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PathExpr:()V
         4: .line 1192
            aload 0 /* this */
            bipush 124
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 10
         5: .line 1194
            iload 3 /* foundUnion */
            ifne 8
         6: .line 1196
            iconst_1
            istore 3 /* foundUnion */
         7: .line 1198
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 20
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 1201
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 1210
            iload 2 /* continueOrLoop */
            ifne 3
        10: .line 1212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        11: .line 1213
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        12: .line 1212
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 1214
            return
        end local 3 // boolean foundUnion
        end local 2 // boolean continueOrLoop
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   14     0            this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   14     1           opPos  I
            2   14     2  continueOrLoop  Z
            3   14     3      foundUnion  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void PathExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1230
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1232
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.FilterExpr:()I
            istore 2 /* filterExprMatch */
        start local 2 // int filterExprMatch
         2: .line 1234
            iload 2 /* filterExprMatch */
            ifeq 20
         3: .line 1238
            iload 2 /* filterExprMatch */
            iconst_2
            if_icmpne 4
            iconst_1
            goto 5
      StackMap locals: int int
      StackMap stack:
         4: iconst_0
      StackMap locals:
      StackMap stack: int
         5: istore 3 /* locationPathStarted */
        start local 3 // boolean locationPathStarted
         6: .line 1240
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 13
         7: .line 1242
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1244
            iload 3 /* locationPathStarted */
            ifne 11
         9: .line 1247
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        10: .line 1249
            iconst_1
            istore 3 /* locationPathStarted */
        11: .line 1252
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativeLocationPath:()Z
            ifne 13
        12: .line 1255
            aload 0 /* this */
            ldc "ER_EXPECTED_REL_LOC_PATH"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        13: .line 1261
      StackMap locals:
      StackMap stack:
            iload 3 /* locationPathStarted */
            ifeq 21
        14: .line 1263
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        15: .line 1264
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        16: .line 1265
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        17: .line 1266
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        18: .line 1265
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        end local 3 // boolean locationPathStarted
        19: .line 1268
            goto 21
        20: .line 1271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.LocationPath:()V
        21: .line 1273
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int filterExprMatch
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot                 Name  Signature
            0   22     0                 this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   22     1                opPos  I
            2   22     2      filterExprMatch  I
            6   19     3  locationPathStarted  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected int FilterExpr();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1295
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1299
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PrimaryExpr:()Z
            ifeq 11
         2: .line 1301
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 9
         3: .line 1305
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         4: .line 1307
            goto 6
         5: .line 1309
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
         6: .line 1307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 5
         7: .line 1312
            iconst_2
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
         8: .line 1313
            goto 12
        end local 2 // int filterMatch
         9: .line 1316
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
        10: .line 1318
            goto 12
        end local 2 // int filterMatch
        11: .line 1321
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
        12: .line 1324
      StackMap locals: int
      StackMap stack:
            iload 2 /* filterMatch */
            ireturn
        end local 2 // int filterMatch
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   13     1        opPos  I
            8    9     2  filterMatch  I
           10   11     2  filterMatch  I
           12   13     2  filterMatch  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected boolean PrimaryExpr();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1352
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 1354
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 39
            if_icmpeq 2
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 34
            if_icmpne 9
         2: .line 1356
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser top int
      StackMap stack:
            aload 0 /* this */
            iconst_2
            bipush 21
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         3: .line 1357
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Literal:()V
         4: .line 1359
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
         5: .line 1360
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
         6: .line 1359
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1362
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
         8: .line 1363
            goto 44
        end local 1 // boolean matchFound
         9: .line 1364
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 36
            if_icmpne 18
        10: .line 1366
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        11: .line 1367
            aload 0 /* this */
            iconst_2
            bipush 22
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        12: .line 1368
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.QName:()V
        13: .line 1370
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
        14: .line 1371
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
        15: .line 1370
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        16: .line 1373
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        17: .line 1374
            goto 44
        end local 1 // boolean matchFound
        18: .line 1375
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 40
            if_icmpne 28
        19: .line 1377
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        20: .line 1378
            aload 0 /* this */
            iconst_2
            bipush 23
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        21: .line 1379
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
        22: .line 1380
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        23: .line 1382
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
        24: .line 1383
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
        25: .line 1382
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        26: .line 1385
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        27: .line 1386
            goto 44
        end local 1 // boolean matchFound
        28: .line 1387
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 40
            bipush 46
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            if_icmpne 32
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_1
            if_icmple 32
        29: .line 1388
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iconst_1
            invokevirtual java.lang.String.charAt:(I)C
        30: .line 1387
            invokestatic java.lang.Character.isDigit:(C)Z
        31: .line 1388
            ifne 33
      StackMap locals:
      StackMap stack:
        32: aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            invokestatic java.lang.Character.isDigit:(C)Z
            ifeq 40
        33: .line 1390
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_2
            bipush 27
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        34: .line 1391
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Number:()V
        35: .line 1393
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
        36: .line 1394
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
        37: .line 1393
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 1396
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        39: .line 1397
            goto 44
        end local 1 // boolean matchFound
        40: .line 1398
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 40
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifne 41
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 43
            aload 0 /* this */
            bipush 40
            iconst_3
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 43
        41: .line 1400
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.FunctionCall:()Z
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        42: .line 1401
            goto 44
        end local 1 // boolean matchFound
        43: .line 1404
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        44: .line 1407
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int
      StackMap stack:
            iload 1 /* matchFound */
            ireturn
        end local 2 // int opPos
        end local 1 // boolean matchFound
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   45     0        this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            8    9     1  matchFound  Z
           17   18     1  matchFound  Z
           27   28     1  matchFound  Z
           39   40     1  matchFound  Z
           42   43     1  matchFound  Z
           44   45     1  matchFound  Z
            1   45     2       opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void Argument();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1420
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1422
            aload 0 /* this */
            iconst_2
            bipush 26
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1423
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1425
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         4: .line 1426
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         5: .line 1425
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1427
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    7     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected boolean FunctionCall();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1440
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1442
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 9
         2: .line 1444
            aload 0 /* this */
            iconst_4
            bipush 24
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         3: .line 1446
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         4: .line 1448
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         5: .line 1449
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         6: .line 1451
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iconst_2
            iadd
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1453
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1454
            goto 19
         9: .line 1457
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.getFunctionToken:(Ljava/lang/String;)I
            istore 2 /* funcTok */
        start local 2 // int funcTok
        10: .line 1459
            iconst_m1
            iload 2 /* funcTok */
            if_icmpne 14
        11: .line 1461
            aload 0 /* this */
            ldc "ER_COULDNOT_FIND_FUNCTION"
        12: .line 1462
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
        13: .line 1461
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        14: .line 1465
      StackMap locals: int
      StackMap stack:
            iload 2 /* funcTok */
            tableswitch { // 1030 - 1033
                 1030: 15
                 1031: 15
                 1032: 15
                 1033: 15
              default: 16
          }
        15: .line 1472
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        16: .line 1474
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            bipush 25
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        17: .line 1476
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iconst_1
            iadd
            iload 2 /* funcTok */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        18: .line 1479
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        end local 2 // int funcTok
        19: .line 1482
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 40
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        20: .line 1484
            goto 30
        21: .line 1486
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 44
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 23
        22: .line 1488
            aload 0 /* this */
            ldc "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        23: .line 1491
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Argument:()V
        24: .line 1493
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 30
        25: .line 1495
            aload 0 /* this */
            bipush 44
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        26: .line 1497
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 30
        27: .line 1499
            aload 0 /* this */
            ldc "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG"
        28: .line 1500
            aconst_null
        29: .line 1499
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        30: .line 1484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 31
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnonnull 21
        31: .line 1505
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        32: .line 1508
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        33: .line 1509
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        34: .line 1510
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        35: .line 1511
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        36: .line 1510
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        37: .line 1513
            iconst_1
            ireturn
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   38     0     this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   38     1    opPos  I
           10   19     2  funcTok  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void LocationPath();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1529
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1532
            aload 0 /* this */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1534
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            istore 2 /* seenSlash */
        start local 2 // boolean seenSlash
         3: .line 1536
            iload 2 /* seenSlash */
            ifeq 9
         4: .line 1538
            aload 0 /* this */
            iconst_4
            bipush 50
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 1541
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_2
            isub
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1542
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            isub
            bipush 35
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1544
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1545
            goto 11
      StackMap locals: int int
      StackMap stack:
         9: aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnonnull 11
        10: .line 1546
            aload 0 /* this */
            ldc "ER_EXPECTED_LOC_PATH_AT_END_EXPR"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        11: .line 1549
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 16
        12: .line 1551
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativeLocationPath:()Z
            ifne 16
            iload 2 /* seenSlash */
            ifne 16
        13: .line 1555
            aload 0 /* this */
            ldc "ER_EXPECTED_LOC_PATH"
        14: .line 1556
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
        15: .line 1555
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        16: .line 1561
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        17: .line 1562
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        18: .line 1563
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        19: .line 1564
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        20: .line 1563
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        21: .line 1565
            return
        end local 2 // boolean seenSlash
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   22     0       this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   22     1      opPos  I
            3   22     2  seenSlash  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected boolean RelativeLocationPath();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1580
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Step:()Z
            ifne 5
         1: .line 1582
            iconst_0
            ireturn
         2: .line 1587
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 1589
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Step:()Z
            ifne 5
         4: .line 1593
            aload 0 /* this */
            ldc "ER_EXPECTED_LOC_STEP"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         5: .line 1585
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 2
         6: .line 1597
            iconst_1
            ireturn
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected boolean Step();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1611
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1613
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            istore 2 /* doubleSlash */
        start local 2 // boolean doubleSlash
         2: .line 1618
            iload 2 /* doubleSlash */
            ifeq 15
         3: .line 1620
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1622
            aload 0 /* this */
            iconst_2
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 1630
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1631
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            sipush 1033
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1632
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         8: .line 1635
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iconst_1
            iadd
         9: .line 1636
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        10: .line 1635
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1639
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        12: .line 1640
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        13: .line 1639
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        14: .line 1642
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        15: .line 1645
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            ldc "."
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 23
        16: .line 1647
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 1649
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 19
        18: .line 1651
            aload 0 /* this */
            ldc "ER_PREDICATE_ILLEGAL_SYNTAX"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        19: .line 1654
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            bipush 48
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        20: .line 1657
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_2
            isub
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        21: .line 1658
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            isub
            sipush 1033
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        22: .line 1659
            goto 42
        23: .line 1660
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc ".."
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 29
        24: .line 1662
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        25: .line 1663
            aload 0 /* this */
            iconst_4
            bipush 45
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        26: .line 1666
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_2
            isub
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        27: .line 1667
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            isub
            sipush 1033
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        28: .line 1668
            goto 42
        29: .line 1673
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 31
            aload 0 /* this */
            bipush 64
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 31
            aload 0 /* this */
            bipush 95
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 31
        30: .line 1674
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 39
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic java.lang.Character.isLetter:(C)Z
            ifeq 39
        31: .line 1676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Basis:()V
        32: .line 1678
            goto 34
        33: .line 1680
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
        34: .line 1678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 33
        35: .line 1684
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        36: .line 1685
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        37: .line 1684
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 1686
            goto 42
        39: .line 1690
      StackMap locals:
      StackMap stack:
            iload 2 /* doubleSlash */
            ifeq 41
        40: .line 1693
            aload 0 /* this */
            ldc "ER_EXPECTED_LOC_STEP"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        41: .line 1696
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        42: .line 1699
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // boolean doubleSlash
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   43     0         this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   43     1        opPos  I
            2   43     2  doubleSlash  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void Basis();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1712
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1716
            aload 0 /* this */
            ldc "::"
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(Ljava/lang/String;I)Z
            ifeq 6
         2: .line 1718
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AxisName:()I
            istore 2 /* axesType */
        start local 2 // int axesType
         3: .line 1720
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1721
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         5: .line 1722
            goto 13
        end local 2 // int axesType
         6: .line 1723
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            bipush 64
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 11
         7: .line 1725
            bipush 39
            istore 2 /* axesType */
        start local 2 // int axesType
         8: .line 1727
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         9: .line 1728
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        10: .line 1729
            goto 13
        end local 2 // int axesType
        11: .line 1732
      StackMap locals:
      StackMap stack:
            bipush 40
            istore 2 /* axesType */
        start local 2 // int axesType
        12: .line 1734
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        13: .line 1738
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        14: .line 1740
            aload 0 /* this */
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.NodeTest:(I)V
        15: .line 1743
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
            iconst_1
            iadd
        16: .line 1744
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        17: .line 1743
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        18: .line 1745
            return
        end local 2 // int axesType
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   19     1     opPos  I
            3    6     2  axesType  I
            8   11     2  axesType  I
           12   19     2  axesType  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected int AxisName();
    descriptor: ()I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1759
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokestatic com.sun.org.apache.xpath.internal.compiler.Keywords.getAxisName:(Ljava/lang/String;)Ljava/lang/Integer;
            astore 1 /* val */
        start local 1 // java.lang.Object val
         1: .line 1761
            aload 1 /* val */
            ifnonnull 5
         2: .line 1763
            aload 0 /* this */
            ldc "ER_ILLEGAL_AXIS_NAME"
         3: .line 1764
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         4: .line 1763
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         5: .line 1767
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1 /* val */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* axesType */
        start local 2 // int axesType
         6: .line 1769
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         7: .line 1771
            iload 2 /* axesType */
            ireturn
        end local 2 // int axesType
        end local 1 // java.lang.Object val
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    8     1       val  Ljava/lang/Object;
            6    8     2  axesType  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void NodeTest(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // int axesType
         0: .line 1787
            aload 0 /* this */
            bipush 40
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 17
         1: .line 1789
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokestatic com.sun.org.apache.xpath.internal.compiler.Keywords.getNodeType:(Ljava/lang/String;)Ljava/lang/Integer;
            astore 2 /* nodeTestOp */
        start local 2 // java.lang.Object nodeTestOp
         2: .line 1791
            aload 2 /* nodeTestOp */
            ifnonnull 7
         3: .line 1793
            aload 0 /* this */
            ldc "ER_UNKNOWN_NODETYPE"
         4: .line 1794
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         5: .line 1793
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         6: .line 1795
            goto 39
         7: .line 1798
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1800
            aload 2 /* nodeTestOp */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 3 /* nt */
        start local 3 // int nt
         9: .line 1802
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 3 /* nt */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        10: .line 1803
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1805
            aload 0 /* this */
            bipush 40
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        12: .line 1807
            sipush 1032
            iload 3 /* nt */
            if_icmpne 15
        13: .line 1809
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 15
        14: .line 1811
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Literal:()V
        15: .line 1815
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        end local 3 // int nt
        end local 2 // java.lang.Object nodeTestOp
        16: .line 1817
            goto 39
        17: .line 1822
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            bipush 34
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        18: .line 1823
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        19: .line 1825
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 29
        20: .line 1827
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 23
        21: .line 1829
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            bipush -3
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        22: .line 1830
            goto 26
        23: .line 1833
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        24: .line 1837
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            invokestatic java.lang.Character.isLetter:(C)Z
            ifne 26
            aload 0 /* this */
            bipush 95
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 26
        25: .line 1840
            aload 0 /* this */
            ldc "ER_EXPECTED_NODE_TEST"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        26: .line 1844
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        27: .line 1845
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        28: .line 1846
            goto 30
        29: .line 1849
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            bipush -2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        30: .line 1852
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        31: .line 1854
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 34
        32: .line 1856
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            bipush -3
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        33: .line 1857
            goto 37
        34: .line 1860
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        35: .line 1864
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            invokestatic java.lang.Character.isLetter:(C)Z
            ifne 37
            aload 0 /* this */
            bipush 95
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 37
        36: .line 1867
            aload 0 /* this */
            ldc "ER_EXPECTED_NODE_TEST"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        37: .line 1871
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 1873
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        39: .line 1875
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int axesType
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   40     0        this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   40     1    axesType  I
            2   16     2  nodeTestOp  Ljava/lang/Object;
            9   16     3          nt  I
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
          Name  Flags
      axesType  

  protected void Predicate();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1887
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 4
         1: .line 1889
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 1890
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PredicateExpr:()V
         3: .line 1891
            aload 0 /* this */
            bipush 93
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         4: .line 1893
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void PredicateExpr();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1905
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 1907
            aload 0 /* this */
            iconst_2
            bipush 29
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1908
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1911
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         4: .line 1912
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         5: .line 1913
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
         6: .line 1914
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
         7: .line 1913
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         8: .line 1915
            return
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    9     1  opPos  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void QName();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1927
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 6
         1: .line 1929
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         2: .line 1930
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         3: .line 1932
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1933
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         5: .line 1934
            goto 8
         6: .line 1937
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            bipush -2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1938
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         8: .line 1942
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         9: .line 1943
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        10: .line 1945
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        11: .line 1946
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   12     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void NCName();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1955
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         1: .line 1956
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         2: .line 1958
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 1959
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;

  protected void Literal();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 1974
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokevirtual java.lang.String.length:()I
            iconst_1
            isub
            istore 1 /* last */
        start local 1 // int last
         1: .line 1975
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            istore 2 /* c0 */
        start local 2 // char c0
         2: .line 1976
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iload 1 /* last */
            invokevirtual java.lang.String.charAt:(I)C
            istore 3 /* cX */
        start local 3 // char cX
         3: .line 1978
            iload 2 /* c0 */
            bipush 34
            if_icmpne 4
            iload 3 /* cX */
            bipush 34
            if_icmpeq 5
      StackMap locals: int int int
      StackMap stack:
         4: iload 2 /* c0 */
            bipush 39
            if_icmpne 13
            iload 3 /* cX */
            bipush 39
            if_icmpne 13
         5: .line 1983
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            istore 4 /* tokenQueuePos */
        start local 4 // int tokenQueuePos
         6: .line 1985
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aconst_null
            iload 4 /* tokenQueuePos */
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.setElementAt:(Ljava/lang/Object;I)V
         7: .line 1987
            new com.sun.org.apache.xpath.internal.objects.XString
            dup
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            iconst_1
            iload 1 /* last */
            invokevirtual java.lang.String.substring:(II)Ljava/lang/String;
            invokespecial com.sun.org.apache.xpath.internal.objects.XString.<init>:(Ljava/lang/String;)V
            astore 5 /* obj */
        start local 5 // java.lang.Object obj
         8: .line 1989
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            aload 5 /* obj */
            iload 4 /* tokenQueuePos */
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.setElementAt:(Ljava/lang/Object;I)V
         9: .line 1992
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 4 /* tokenQueuePos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        10: .line 1993
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1995
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        end local 5 // java.lang.Object obj
        end local 4 // int tokenQueuePos
        12: .line 1996
            goto 16
        13: .line 1999
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED"
        14: .line 2000
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
        15: .line 1999
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        16: .line 2002
      StackMap locals:
      StackMap stack:
            return
        end local 3 // char cX
        end local 2 // char c0
        end local 1 // int last
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   17     0           this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   17     1           last  I
            2   17     2             c0  C
            3   17     3             cX  C
            6   12     4  tokenQueuePos  I
            8   12     5            obj  Ljava/lang/Object;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void Number();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 2014
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 14
         1: .line 2024
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            bipush 101
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmpgt 2
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            bipush 69
            invokevirtual java.lang.String.indexOf:(I)I
            iconst_m1
            if_icmple 3
         2: .line 2025
      StackMap locals:
      StackMap stack:
            new java.lang.NumberFormatException
            dup
            invokespecial java.lang.NumberFormatException.<init>:()V
            athrow
         3: .line 2026
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            invokestatic java.lang.Double.valueOf:(Ljava/lang/String;)Ljava/lang/Double;
            invokevirtual java.lang.Double.doubleValue:()D
            dstore 1 /* num */
        start local 1 // double num
         4: .line 2027
            goto 10
        end local 1 // double num
         5: .line 2028
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            pop
         6: .line 2030
            dconst_0
            dstore 1 /* num */
        start local 1 // double num
         7: .line 2032
            aload 0 /* this */
            ldc "ER_COULDNOT_BE_FORMATTED_TO_NUMBER"
         8: .line 2033
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         9: .line 2032
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 2036
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            getfield com.sun.org.apache.xpath.internal.compiler.OpMap.m_tokenQueue:Lcom/sun/org/apache/xml/internal/utils/ObjectVector;
            new com.sun.org.apache.xpath.internal.objects.XNumber
            dup
            dload 1 /* num */
            invokespecial com.sun.org.apache.xpath.internal.objects.XNumber.<init>:(D)V
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xml.internal.utils.ObjectVector.setElementAt:(Ljava/lang/Object;I)V
        11: .line 2037
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iconst_1
            isub
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        12: .line 2038
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 2040
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        end local 1 // double num
        14: .line 2042
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   15     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            4    5     1   num  D
            7   14     1   num  D
      Exception table:
        from    to  target  type
           1     4       5  Class java.lang.NumberFormatException
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void Pattern();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 2059
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.LocationPathPattern:()V
         1: .line 2061
            aload 0 /* this */
            bipush 124
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 4
         2: .line 2063
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 2057
            goto 0
         4: .line 2070
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void LocationPathPattern();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 2085
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 1 /* opPos */
        start local 1 // int opPos
         1: .line 2091
            iconst_0
            istore 2 /* relativePathStatus */
        start local 2 // int relativePathStatus
         2: .line 2093
            aload 0 /* this */
            iconst_2
            bipush 31
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         3: .line 2095
            aload 0 /* this */
            bipush 40
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 18
         4: .line 2096
            aload 0 /* this */
            ldc "id"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifne 6
         5: .line 2097
            aload 0 /* this */
            ldc "key"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 18
         6: .line 2099
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.IdKeyPattern:()V
         7: .line 2101
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 31
         8: .line 2103
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 2105
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 13
        10: .line 2107
            aload 0 /* this */
            iconst_4
            bipush 52
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        11: .line 2109
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        12: .line 2110
            goto 14
        13: .line 2113
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            bipush 53
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        14: .line 2117
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_2
            isub
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        15: .line 2118
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            isub
            sipush 1034
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        16: .line 2120
            iconst_2
            istore 2 /* relativePathStatus */
        17: .line 2122
            goto 31
        18: .line 2123
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 30
        19: .line 2125
            aload 0 /* this */
            bipush 47
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 24
        20: .line 2127
            aload 0 /* this */
            iconst_4
            bipush 52
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        21: .line 2133
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        22: .line 2135
            iconst_2
            istore 2 /* relativePathStatus */
        23: .line 2136
            goto 26
        24: .line 2139
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_4
            bipush 50
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        25: .line 2141
            iconst_1
            istore 2 /* relativePathStatus */
        26: .line 2146
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_2
            isub
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        27: .line 2147
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            isub
            bipush 35
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        28: .line 2149
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        29: .line 2150
            goto 31
        30: .line 2153
      StackMap locals:
      StackMap stack:
            iconst_2
            istore 2 /* relativePathStatus */
        31: .line 2156
      StackMap locals:
      StackMap stack:
            iload 2 /* relativePathStatus */
            ifeq 37
        32: .line 2158
            aload 0 /* this */
            bipush 124
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 35
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 35
        33: .line 2160
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativePathPattern:()V
        34: .line 2161
            goto 37
        35: .line 2162
      StackMap locals:
      StackMap stack:
            iload 2 /* relativePathStatus */
            iconst_2
            if_icmpne 37
        36: .line 2165
            aload 0 /* this */
            ldc "ER_EXPECTED_REL_PATH_PATTERN"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        37: .line 2170
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 2171
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        39: .line 2172
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 1 /* opPos */
            iconst_1
            iadd
        40: .line 2173
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 1 /* opPos */
            isub
        41: .line 2172
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        42: .line 2174
            return
        end local 2 // int relativePathStatus
        end local 1 // int opPos
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   43     0                this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1   43     1               opPos  I
            2   43     2  relativePathStatus  I
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void IdKeyPattern();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 2187
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.FunctionCall:()Z
            pop
         1: .line 2188
            return
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected void RelativePathPattern();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
         0: .line 2204
            aload 0 /* this */
            iconst_0
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.StepPattern:(Z)Z
            istore 1 /* trailingSlashConsumed */
        start local 1 // boolean trailingSlashConsumed
         1: .line 2206
            goto 6
         2: .line 2208
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 2213
            aload 0 /* this */
            iload 1 /* trailingSlashConsumed */
            ifeq 4
            iconst_0
            goto 5
      StackMap locals:
      StackMap stack: com.sun.org.apache.xpath.internal.compiler.XPathParser
         4: iconst_1
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int
      StackMap stack: com.sun.org.apache.xpath.internal.compiler.XPathParser int
         5: invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.StepPattern:(Z)Z
            istore 1 /* trailingSlashConsumed */
         6: .line 2206
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 2
         7: .line 2215
            return
        end local 1 // boolean trailingSlashConsumed
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    8     0                   this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            1    8     1  trailingSlashConsumed  Z
    Exceptions:
      throws javax.xml.transform.TransformerException

  protected boolean StepPattern(boolean);
    descriptor: (Z)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // boolean isLeadingSlashPermitted
         0: .line 2231
            aload 0 /* this */
            iload 1 /* isLeadingSlashPermitted */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AbbreviatedNodeTestStep:(Z)Z
            ireturn
        end local 1 // boolean isLeadingSlashPermitted
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0    1     0                     this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0    1     1  isLeadingSlashPermitted  Z
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
                         Name  Flags
      isLeadingSlashPermitted  

  protected boolean AbbreviatedNodeTestStep(boolean);
    descriptor: (Z)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
        start local 1 // boolean isLeadingSlashPermitted
         0: .line 2249
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 2 /* opPos */
        start local 2 // int opPos
         1: .line 2253
            iconst_m1
            istore 4 /* matchTypePos */
        start local 4 // int matchTypePos
         2: .line 2255
            aload 0 /* this */
            bipush 64
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 7
         3: .line 2257
            bipush 51
            istore 3 /* axesType */
        start local 3 // int axesType
         4: .line 2259
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 2260
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         6: .line 2261
            goto 34
        end local 3 // int axesType
         7: .line 2262
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int top int
      StackMap stack:
            aload 0 /* this */
            ldc "::"
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(Ljava/lang/String;I)Z
            ifeq 24
         8: .line 2264
            aload 0 /* this */
            ldc "attribute"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 12
         9: .line 2266
            bipush 51
            istore 3 /* axesType */
        start local 3 // int axesType
        10: .line 2268
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        11: .line 2269
            goto 21
        end local 3 // int axesType
        12: .line 2270
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "child"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 17
        13: .line 2272
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 4 /* matchTypePos */
        14: .line 2273
            bipush 53
            istore 3 /* axesType */
        start local 3 // int axesType
        15: .line 2275
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        16: .line 2276
            goto 21
        end local 3 // int axesType
        17: .line 2279
      StackMap locals:
      StackMap stack:
            iconst_m1
            istore 3 /* axesType */
        start local 3 // int axesType
        18: .line 2281
            aload 0 /* this */
            ldc "ER_AXES_NOT_ALLOWED"
        19: .line 2282
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
        20: .line 2281
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        21: .line 2285
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        22: .line 2286
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        23: .line 2287
            goto 34
        end local 3 // int axesType
        24: .line 2288
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int top int
      StackMap stack:
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 31
        25: .line 2290
            iload 1 /* isLeadingSlashPermitted */
            ifne 27
        26: .line 2293
            aload 0 /* this */
            ldc "ER_EXPECTED_STEP_PATTERN"
            aconst_null
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        27: .line 2295
      StackMap locals:
      StackMap stack:
            bipush 52
            istore 3 /* axesType */
        start local 3 // int axesType
        28: .line 2297
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        29: .line 2298
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        30: .line 2299
            goto 34
        end local 3 // int axesType
        31: .line 2302
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            istore 4 /* matchTypePos */
        32: .line 2303
            bipush 53
            istore 3 /* axesType */
        start local 3 // int axesType
        33: .line 2305
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        34: .line 2309
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iconst_1
            iadd
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        35: .line 2311
            aload 0 /* this */
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.NodeTest:(I)V
        36: .line 2314
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
            iconst_1
            iadd
        37: .line 2315
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
        38: .line 2314
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        39: .line 2317
            goto 41
        40: .line 2319
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
        41: .line 2317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 40
        42: .line 2336
            iload 4 /* matchTypePos */
            iconst_m1
            if_icmple 47
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 47
            aload 0 /* this */
            bipush 47
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 47
        43: .line 2338
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 4 /* matchTypePos */
            bipush 52
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        44: .line 2340
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        45: .line 2342
            iconst_1
            istore 5 /* trailingSlashConsumed */
        start local 5 // boolean trailingSlashConsumed
        46: .line 2343
            goto 48
        end local 5 // boolean trailingSlashConsumed
        47: .line 2346
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* trailingSlashConsumed */
        start local 5 // boolean trailingSlashConsumed
        48: .line 2350
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iload 2 /* opPos */
            iconst_1
            iadd
        49: .line 2351
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_ops:Lcom/sun/org/apache/xpath/internal/compiler/OpMap;
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.getOp:(I)I
            iload 2 /* opPos */
            isub
        50: .line 2350
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        51: .line 2353
            iload 5 /* trailingSlashConsumed */
            ireturn
        end local 5 // boolean trailingSlashConsumed
        end local 4 // int matchTypePos
        end local 3 // int axesType
        end local 2 // int opPos
        end local 1 // boolean isLeadingSlashPermitted
        end local 0 // com.sun.org.apache.xpath.internal.compiler.XPathParser this
      LocalVariableTable:
        Start  End  Slot                     Name  Signature
            0   52     0                     this  Lcom/sun/org/apache/xpath/internal/compiler/XPathParser;
            0   52     1  isLeadingSlashPermitted  Z
            1   52     2                    opPos  I
            4    7     3                 axesType  I
           10   12     3                 axesType  I
           15   17     3                 axesType  I
           18   24     3                 axesType  I
           28   31     3                 axesType  I
           33   52     3                 axesType  I
            2   52     4             matchTypePos  I
           46   47     5    trailingSlashConsumed  Z
           48   52     5    trailingSlashConsumed  Z
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
                         Name  Flags
      isLeadingSlashPermitted  
}
SourceFile: "XPathParser.java"