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 78
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 61
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         2: .line 66
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
         3: .line 80
            aload 0 /* this */
            aload 1 /* errorListener */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_errorListener:Ljavax/xml/transform/ErrorListener;
         4: .line 81
            aload 0 /* this */
            aload 2 /* sourceLocator */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_sourceLocator:Ljavax/xml/transform/SourceLocator;
         5: .line 82
            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 106
            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 107
            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 108
            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 110
            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 112
            aload 4 /* lexer */
            aload 2 /* expression */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Lexer.tokenize:(Ljava/lang/String;)V
         5: .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_0
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 115
            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 128
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 129
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         9: .line 131
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 26
        10: .line 133
            ldc ""
            astore 5 /* extraTokens */
        start local 5 // java.lang.String extraTokens
        11: .line 135
            goto 16
        12: .line 137
      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 139
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        14: .line 141
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 16
        15: .line 142
            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 135
      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 145
            aload 0 /* this */
            ldc "ER_EXTRA_ILLEGAL_TOKENS"
        18: .line 146
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* extraTokens */
            aastore
        19: .line 145
            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 149
            goto 26
        21: .line 150
      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 152
            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 157
            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 158
            goto 26
        25: .line 160
      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 163
      StackMap locals:
      StackMap stack:
            aload 1 /* compiler */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Compiler.shrink:()V
        27: .line 164
            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 182
            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 183
            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 184
            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 186
            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 188
            aload 4 /* lexer */
            aload 2 /* expression */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.Lexer.tokenize:(Ljava/lang/String;)V
         5: .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_0
            bipush 30
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 191
            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 193
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 194
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Pattern:()V
         9: .line 196
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 20
        10: .line 198
            ldc ""
            astore 5 /* extraTokens */
        start local 5 // java.lang.String extraTokens
        11: .line 200
            goto 16
        12: .line 202
      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 204
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        14: .line 206
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 16
        15: .line 207
            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 200
      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 210
            aload 0 /* this */
            ldc "ER_EXTRA_ILLEGAL_TOKENS"
        18: .line 211
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 5 /* extraTokens */
            aastore
        19: .line 210
            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 215
      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 216
            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 218
            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 219
            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 241
            aload 0 /* this */
            aload 1 /* handler */
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_errorListener:Ljavax/xml/transform/ErrorListener;
         1: .line 242
            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 251
            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 264
            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 277
            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 293
            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 296
            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 297
            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 299
            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 301
            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 302
            goto 10
        end local 4 // boolean b
         9: .line 305
      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 308
      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 329
            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 331
            iload 4 /* lookBehindPos */
            iflt 14
         2: .line 333
            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 335
            aload 5 /* lookbehind */
            invokevirtual java.lang.String.length:()I
            iconst_1
            if_icmpne 12
         4: .line 337
            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 339
            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 340
            goto 15
        end local 3 // boolean isToken
        12: .line 343
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* isToken */
        end local 5 // java.lang.String lookbehind
        start local 3 // boolean isToken
        13: .line 345
            goto 15
        end local 3 // boolean isToken
        14: .line 348
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 3 /* isToken */
        start local 3 // boolean isToken
        15: .line 351
      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 371
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            iload 1 /* n */
            isub
            ifle 9
         1: .line 373
            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 374
            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 376
            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 377
            goto 10
        end local 2 // boolean hasToken
         9: .line 380
      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 383
      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 402
            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 404
            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 406
            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 407
            goto 10
        end local 3 // boolean isToken
         7: .line 410
      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 413
      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 423
            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 425
            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 426
            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 427
            goto 6
         4: .line 430
      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 431
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         6: .line 433
      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 447
            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 449
            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 451
            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 452
            goto 5
        end local 2 // java.lang.String tok
         4: .line 455
      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 458
      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 468
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_queueMark:I
            ifle 5
         1: .line 470
            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 472
            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 473
            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 474
            goto 7
         5: .line 477
      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 478
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
         7: .line 480
      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 494
            aload 0 /* this */
            aload 1 /* expected */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 3
         1: .line 496
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 497
            goto 7
         3: .line 500
      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 501
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         5: .line 500
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         6: .line 506
            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 508
      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 522
            aload 0 /* this */
            iload 1 /* expected */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 3
         1: .line 524
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 525
            goto 8
         3: .line 528
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_EXPECTED_BUT_FOUND"
         4: .line 529
            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 530
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            aastore
         6: .line 528
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 535
            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 537
      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 554
            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 555
            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 557
            aload 4 /* ehandler */
            ifnull 5
         3: .line 560
            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 561
            goto 6
         5: .line 565
      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 567
      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 581
            iload 1 /* b */
            ifne 5
         1: .line 584
            ldc "ER_INCORRECT_PROGRAMMER_ASSERTION"
         2: .line 585
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 2 /* msg */
            aastore
         3: .line 583
            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 587
            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 589
      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 607
            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 608
            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 610
            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 611
            aload 4 /* ehandler */
            ifnull 6
         4: .line 614
            aload 4 /* ehandler */
            aload 5 /* te */
            invokeinterface javax.xml.transform.ErrorListener.fatalError:(Ljavax/xml/transform/TransformerException;)V
         5: .line 615
            goto 7
         6: .line 619
      StackMap locals: java.lang.String javax.xml.transform.ErrorListener javax.xml.transform.TransformerException
      StackMap stack:
            aload 5 /* te */
            athrow
         7: .line 621
      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 633
            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 636
            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 638
            ldc "\n Remaining tokens: ("
            astore 3 /* msg */
        start local 3 // java.lang.String msg
         3: .line 640
            goto 6
         4: .line 642
      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 644
            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 640
      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 647
            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 648
            goto 10
        end local 2 // java.lang.String returnMsg
         9: .line 651
      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 654
      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 677
            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.Object id
         1: .line 678
            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/Object;
            astore 3 /* id */
         2: .line 679
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String top java.lang.Object
      StackMap stack:
            aload 3 /* id */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 2 /* tok */
        start local 2 // int tok
         3: .line 680
            goto 9
        end local 3 // java.lang.Object id
        end local 2 // int tok
         4: .line 681
      StackMap locals: com.sun.org.apache.xpath.internal.compiler.XPathParser java.lang.String
      StackMap stack: java.lang.NullPointerException
            pop
         5: .line 683
            iconst_m1
            istore 2 /* tok */
        start local 2 // int tok
         6: goto 9
        end local 2 // int tok
         7: .line 685
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
            pop
         8: .line 687
            iconst_m1
            istore 2 /* tok */
        start local 2 // int tok
         9: .line 690
      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/Object;
      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 705
            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 707
            iload 4 /* totalLen */
            iconst_1
            isub
            istore 5 /* i */
        start local 5 // int i
         2: goto 5
         3: .line 709
      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 707
            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 712
            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 713
            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 714
            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 727
            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 729
            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 730
            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 731
            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 732
            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 746
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.OrExpr:()V
         1: .line 747
            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 761
            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 763
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AndExpr:()V
         2: .line 765
            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 767
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 768
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iconst_2
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         5: .line 769
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.OrExpr:()V
         6: .line 771
            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 772
            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 771
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         9: .line 774
      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 788
            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 790
            aload 0 /* this */
            iconst_m1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            pop
         2: .line 792
            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 794
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 795
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            iconst_3
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         5: .line 796
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AndExpr:()V
         6: .line 798
            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 799
            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 798
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         9: .line 801
      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 821
            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 823
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 824
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 826
      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 828
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 25
         5: .line 830
            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 832
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 833
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 834
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            iconst_4
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         9: .line 836
            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 838
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            istore 1 /* addPos */
        11: .line 839
            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 840
            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 839
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        14: .line 841
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        15: .line 842
            goto 25
        16: .line 843
      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 845
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        18: .line 846
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            iconst_5
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        19: .line 848
            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 850
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.EqualityExpr:(I)I
            istore 1 /* addPos */
        21: .line 851
            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 852
            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 851
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        24: .line 853
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        25: .line 857
      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 881
            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 883
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 884
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 886
      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 888
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 32
         5: .line 890
            aload 0 /* this */
            bipush 60
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 19
         6: .line 892
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 894
            aload 0 /* this */
            bipush 61
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 11
         8: .line 896
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 897
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 6
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        10: .line 898
            goto 12
        11: .line 901
      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 904
      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 906
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelationalExpr:(I)I
            istore 1 /* addPos */
        14: .line 907
            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 908
            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 907
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        17: .line 909
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        18: .line 910
            goto 32
        19: .line 911
      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 913
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        21: .line 915
            aload 0 /* this */
            bipush 61
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 25
        22: .line 917
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        23: .line 918
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 8
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        24: .line 919
            goto 26
        25: .line 922
      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 925
      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 927
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelationalExpr:(I)I
            istore 1 /* addPos */
        28: .line 928
            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 929
            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 928
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        31: .line 930
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        32: .line 934
      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 956
            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 958
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 959
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 961
      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 963
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 24
         5: .line 965
            aload 0 /* this */
            bipush 43
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 15
         6: .line 967
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 968
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 10
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 970
            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 972
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AdditiveExpr:(I)I
            istore 1 /* addPos */
        10: .line 973
            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 974
            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 973
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 975
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        14: .line 976
            goto 24
        15: .line 977
      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 979
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 980
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 11
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        18: .line 982
            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 984
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AdditiveExpr:(I)I
            istore 1 /* addPos */
        20: .line 985
            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 986
            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 985
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        23: .line 987
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        24: .line 991
      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 1014
            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 1016
            iconst_m1
            iload 1 /* addPos */
            if_icmpne 3
         2: .line 1017
            iload 2 /* opPos */
            istore 1 /* addPos */
         3: .line 1019
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.UnaryExpr:()V
         4: .line 1021
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 44
         5: .line 1023
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 15
         6: .line 1025
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         7: .line 1026
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 12
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 1028
            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 1030
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        10: .line 1031
            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 1032
            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 1031
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 1033
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        14: .line 1034
            goto 44
        15: .line 1035
      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 1037
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 1038
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 13
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        18: .line 1040
            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 1042
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        20: .line 1043
            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 1044
            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 1043
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        23: .line 1045
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        24: .line 1046
            goto 44
        25: .line 1047
      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 1049
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        27: .line 1050
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 14
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        28: .line 1052
            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 1054
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        30: .line 1055
            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 1056
            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 1055
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        33: .line 1057
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        34: .line 1058
            goto 44
        35: .line 1059
      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 1061
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        37: .line 1062
            aload 0 /* this */
            iload 1 /* addPos */
            iconst_2
            bipush 15
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        38: .line 1064
            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 1066
            aload 0 /* this */
            iload 1 /* addPos */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.MultiplicativeExpr:(I)I
            istore 1 /* addPos */
        40: .line 1067
            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 1068
            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 1067
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        43: .line 1069
            iinc 1 /* addPos */ 2
        end local 3 // int opPlusLeftHandLen
        44: .line 1073
      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 1087
            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 1088
            iconst_0
            istore 2 /* isNeg */
        start local 2 // boolean isNeg
         2: .line 1090
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_tokenChar:C
            bipush 45
            if_icmpne 6
         3: .line 1092
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1093
            aload 0 /* this */
            iconst_2
            bipush 16
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 1095
            iconst_1
            istore 2 /* isNeg */
         6: .line 1098
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.UnionExpr:()V
         7: .line 1100
            iload 2 /* isNeg */
            ifeq 11
         8: .line 1101
            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 1102
            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 1101
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1103
      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 1115
            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 1117
            aload 0 /* this */
            iconst_2
            bipush 17
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1118
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1120
            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 1121
            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 1120
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1122
            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 1135
            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 1137
            aload 0 /* this */
            iconst_2
            bipush 18
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1138
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1140
            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 1142
            iload 2 /* opLen */
            iconst_2
            if_icmpne 6
         5: .line 1144
            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 1147
      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 1148
            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 1161
            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 1163
            aload 0 /* this */
            iconst_2
            bipush 19
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1164
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1166
            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 1167
            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 1166
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1168
            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 1186
            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 1187
            iconst_1
            istore 2 /* continueOrLoop */
        start local 2 // boolean continueOrLoop
         2: .line 1188
            iconst_0
            istore 3 /* foundUnion */
        start local 3 // boolean foundUnion
         3: .line 1192
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PathExpr:()V
         4: .line 1194
            aload 0 /* this */
            bipush 124
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 10
         5: .line 1196
            iload 3 /* foundUnion */
            ifne 8
         6: .line 1198
            iconst_1
            istore 3 /* foundUnion */
         7: .line 1200
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 20
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         8: .line 1203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 1212
            iload 2 /* continueOrLoop */
            ifne 3
        10: .line 1214
      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 1215
            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 1214
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        13: .line 1216
            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 1232
            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 1234
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.FilterExpr:()I
            istore 2 /* filterExprMatch */
        start local 2 // int filterExprMatch
         2: .line 1236
            iload 2 /* filterExprMatch */
            ifeq 20
         3: .line 1240
            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 1242
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 13
         7: .line 1244
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1246
            iload 3 /* locationPathStarted */
            ifne 11
         9: .line 1249
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
        10: .line 1251
            iconst_1
            istore 3 /* locationPathStarted */
        11: .line 1254
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativeLocationPath:()Z
            ifne 13
        12: .line 1257
            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 1263
      StackMap locals:
      StackMap stack:
            iload 3 /* locationPathStarted */
            ifeq 21
        14: .line 1265
            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 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
            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 1267
            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 1268
            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 1267
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        end local 3 // boolean locationPathStarted
        19: .line 1270
            goto 21
        20: .line 1273
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.LocationPath:()V
        21: .line 1275
      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 1297
            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 1301
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PrimaryExpr:()Z
            ifeq 11
         2: .line 1303
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 9
         3: .line 1307
            aload 0 /* this */
            iload 1 /* opPos */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.insertOp:(III)V
         4: .line 1309
            goto 6
         5: .line 1311
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
         6: .line 1309
      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 1314
            iconst_2
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
         8: .line 1315
            goto 12
        end local 2 // int filterMatch
         9: .line 1318
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
        10: .line 1320
            goto 12
        end local 2 // int filterMatch
        11: .line 1323
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 2 /* filterMatch */
        start local 2 // int filterMatch
        12: .line 1326
      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 1354
            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 1356
            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 1358
      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 1359
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Literal:()V
         4: .line 1361
            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 1362
            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 1361
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         7: .line 1364
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
         8: .line 1365
            goto 44
        end local 1 // boolean matchFound
         9: .line 1366
      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 1368
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        11: .line 1369
            aload 0 /* this */
            iconst_2
            bipush 22
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        12: .line 1370
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.QName:()V
        13: .line 1372
            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 1373
            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 1372
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        16: .line 1375
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        17: .line 1376
            goto 44
        end local 1 // boolean matchFound
        18: .line 1377
      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 1379
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        20: .line 1380
            aload 0 /* this */
            iconst_2
            bipush 23
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        21: .line 1381
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
        22: .line 1382
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        23: .line 1384
            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 1385
            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 1384
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        26: .line 1387
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        27: .line 1388
            goto 44
        end local 1 // boolean matchFound
        28: .line 1389
      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 1390
            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 1389
            invokestatic java.lang.Character.isDigit:(C)Z
        31: .line 1390
            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 1392
      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 1393
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Number:()V
        35: .line 1395
            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 1396
            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 1395
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 1398
            iconst_1
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        39: .line 1399
            goto 44
        end local 1 // boolean matchFound
        40: .line 1400
      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 1402
      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 1403
            goto 44
        end local 1 // boolean matchFound
        43: .line 1406
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 1 /* matchFound */
        start local 1 // boolean matchFound
        44: .line 1409
      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 1422
            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 1424
            aload 0 /* this */
            iconst_2
            bipush 26
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1425
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1427
            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 1428
            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 1427
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         6: .line 1429
            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 1442
            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 1444
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 9
         2: .line 1446
            aload 0 /* this */
            iconst_4
            bipush 24
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         3: .line 1448
            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 1450
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         5: .line 1451
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         6: .line 1453
            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 1455
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1456
            goto 19
         9: .line 1459
      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 1461
            iconst_m1
            iload 2 /* funcTok */
            if_icmpne 14
        11: .line 1463
            aload 0 /* this */
            ldc "ER_COULDNOT_FIND_FUNCTION"
        12: .line 1464
            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 1463
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        14: .line 1467
      StackMap locals: int
      StackMap stack:
            iload 2 /* funcTok */
            tableswitch { // 1030 - 1033
                 1030: 15
                 1031: 15
                 1032: 15
                 1033: 15
              default: 16
          }
        15: .line 1474
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        16: .line 1476
      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 1478
            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 1481
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        end local 2 // int funcTok
        19: .line 1484
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 40
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        20: .line 1486
            goto 30
        21: .line 1488
      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 1490
            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 1493
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Argument:()V
        24: .line 1495
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 30
        25: .line 1497
            aload 0 /* this */
            bipush 44
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        26: .line 1499
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 30
        27: .line 1501
            aload 0 /* this */
            ldc "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG"
        28: .line 1502
            aconst_null
        29: .line 1501
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        30: .line 1486
      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 1507
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        32: .line 1510
            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 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
            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 1512
            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 1513
            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 1512
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        37: .line 1515
            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 1531
            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 1534
            aload 0 /* this */
            iconst_2
            bipush 28
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1536
            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 1538
            iload 2 /* seenSlash */
            ifeq 9
         4: .line 1540
            aload 0 /* this */
            iconst_4
            bipush 50
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 1543
            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 1544
            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 1546
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1547
            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 1548
            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 1551
      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 1553
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativeLocationPath:()Z
            ifne 16
            iload 2 /* seenSlash */
            ifne 16
        13: .line 1557
            aload 0 /* this */
            ldc "ER_EXPECTED_LOC_PATH"
        14: .line 1558
            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 1557
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        16: .line 1563
      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 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
            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 1565
            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 1566
            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 1565
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        21: .line 1567
            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 1582
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Step:()Z
            ifne 5
         1: .line 1584
            iconst_0
            ireturn
         2: .line 1589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 1591
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Step:()Z
            ifne 5
         4: .line 1595
            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 1587
      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 1599
            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 1613
            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 1615
            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 1620
            iload 2 /* doubleSlash */
            ifeq 15
         3: .line 1622
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1624
            aload 0 /* this */
            iconst_2
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .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
         6: .line 1633
            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 1634
            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 1637
            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 1638
            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 1637
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        11: .line 1641
            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 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
            iload 1 /* opPos */
            isub
        13: .line 1641
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        14: .line 1644
            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 1647
      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 1649
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        17: .line 1651
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 19
        18: .line 1653
            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 1656
      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 1659
            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 1660
            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 1661
            goto 42
        23: .line 1662
      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 1664
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        25: .line 1665
            aload 0 /* this */
            iconst_4
            bipush 45
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        26: .line 1668
            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 1669
            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 1670
            goto 42
        29: .line 1675
      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 1676
            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 1678
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Basis:()V
        32: .line 1680
            goto 34
        33: .line 1682
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
        34: .line 1680
      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 1686
            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 1687
            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 1686
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        38: .line 1688
            goto 42
        39: .line 1692
      StackMap locals:
      StackMap stack:
            iload 2 /* doubleSlash */
            ifeq 41
        40: .line 1695
            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 1698
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        42: .line 1701
      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 1714
            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 1718
            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 1720
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.AxisName:()I
            istore 2 /* axesType */
        start local 2 // int axesType
         3: .line 1722
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1723
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         5: .line 1724
            goto 13
        end local 2 // int axesType
         6: .line 1725
      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 1727
            bipush 39
            istore 2 /* axesType */
        start local 2 // int axesType
         8: .line 1729
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         9: .line 1730
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        10: .line 1731
            goto 13
        end local 2 // int axesType
        11: .line 1734
      StackMap locals:
      StackMap stack:
            bipush 40
            istore 2 /* axesType */
        start local 2 // int axesType
        12: .line 1736
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        13: .line 1740
      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 1742
            aload 0 /* this */
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.NodeTest:(I)V
        15: .line 1745
            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 1746
            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 1745
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        18: .line 1747
            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 1761
            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 1763
            aload 1 /* val */
            ifnonnull 5
         2: .line 1765
            aload 0 /* this */
            ldc "ER_ILLEGAL_AXIS_NAME"
         3: .line 1766
            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 1765
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         5: .line 1769
      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 1771
            aload 0 /* this */
            iconst_2
            iload 2 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         7: .line 1773
            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 1789
            aload 0 /* this */
            bipush 40
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 17
         1: .line 1791
            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 1793
            aload 2 /* nodeTestOp */
            ifnonnull 7
         3: .line 1795
            aload 0 /* this */
            ldc "ER_UNKNOWN_NODETYPE"
         4: .line 1796
            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 1795
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
         6: .line 1797
            goto 39
         7: .line 1800
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         8: .line 1802
            aload 2 /* nodeTestOp */
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            istore 3 /* nt */
        start local 3 // int nt
         9: .line 1804
            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 1805
            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 1807
            aload 0 /* this */
            bipush 40
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        12: .line 1809
            sipush 1032
            iload 3 /* nt */
            if_icmpne 15
        13: .line 1811
            aload 0 /* this */
            bipush 41
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifne 15
        14: .line 1813
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Literal:()V
        15: .line 1817
      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 1819
            goto 39
        17: .line 1824
      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 1825
            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 1827
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 29
        20: .line 1829
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 23
        21: .line 1831
            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 1832
            goto 26
        23: .line 1835
      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 1839
            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 1842
            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 1846
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        27: .line 1847
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
        28: .line 1848
            goto 30
        29: .line 1851
      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 1854
      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 1856
            aload 0 /* this */
            bipush 42
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 34
        32: .line 1858
            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 1859
            goto 37
        34: .line 1862
      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 1866
            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 1869
            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 1873
      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 1875
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        39: .line 1877
      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 1889
            aload 0 /* this */
            bipush 91
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 4
         1: .line 1891
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         2: .line 1892
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.PredicateExpr:()V
         3: .line 1893
            aload 0 /* this */
            bipush 93
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         4: .line 1895
      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 1907
            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 1909
            aload 0 /* this */
            iconst_2
            bipush 29
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         2: .line 1910
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Expr:()V
         3: .line 1913
            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 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
            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 1915
            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 1916
            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 1915
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
         8: .line 1917
            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 1929
            aload 0 /* this */
            bipush 58
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 6
         1: .line 1931
            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 1932
            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 1934
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         4: .line 1935
            aload 0 /* this */
            bipush 58
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.consumeExpected:(C)V
         5: .line 1936
            goto 8
         6: .line 1939
      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 1940
            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 1944
      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 1945
            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 1947
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        11: .line 1948
            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 1957
            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 1958
            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 1960
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 1961
            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 1976
            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 1977
            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 1978
            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 1980
            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 1985
      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 1987
            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 1989
            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 1991
            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 1994
            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 1995
            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 1997
            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 1998
            goto 16
        13: .line 2001
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED"
        14: .line 2002
            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 2001
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        16: .line 2004
      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 2016
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.compiler.XPathParser.m_token:Ljava/lang/String;
            ifnull 14
         1: .line 2026
            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 2027
      StackMap locals:
      StackMap stack:
            new java.lang.NumberFormatException
            dup
            invokespecial java.lang.NumberFormatException.<init>:()V
            athrow
         3: .line 2028
      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 2029
            goto 10
        end local 1 // double num
         5: .line 2030
      StackMap locals:
      StackMap stack: java.lang.NumberFormatException
            pop
         6: .line 2032
            dconst_0
            dstore 1 /* num */
        start local 1 // double num
         7: .line 2034
            aload 0 /* this */
            ldc "ER_COULDNOT_BE_FORMATTED_TO_NUMBER"
         8: .line 2035
            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 2034
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 2038
      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 2039
            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 2040
            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 2042
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        end local 1 // double num
        14: .line 2044
      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 2061
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.LocationPathPattern:()V
         1: .line 2063
            aload 0 /* this */
            bipush 124
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 4
         2: .line 2065
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 2059
            goto 0
         4: .line 2072
      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 2087
            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 2093
            iconst_0
            istore 2 /* relativePathStatus */
        start local 2 // int relativePathStatus
         2: .line 2095
            aload 0 /* this */
            iconst_2
            bipush 31
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         3: .line 2097
            aload 0 /* this */
            bipush 40
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 18
         4: .line 2098
            aload 0 /* this */
            ldc "id"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifne 6
         5: .line 2099
            aload 0 /* this */
            ldc "key"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 18
         6: .line 2101
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.IdKeyPattern:()V
         7: .line 2103
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 31
         8: .line 2105
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         9: .line 2107
            aload 0 /* this */
            bipush 47
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 13
        10: .line 2109
            aload 0 /* this */
            iconst_4
            bipush 52
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        11: .line 2111
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        12: .line 2112
            goto 14
        13: .line 2115
      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 2119
      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 2120
            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 2122
            iconst_2
            istore 2 /* relativePathStatus */
        17: .line 2124
            goto 31
        18: .line 2125
      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 2127
            aload 0 /* this */
            bipush 47
            iconst_1
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.lookahead:(CI)Z
            ifeq 24
        20: .line 2129
            aload 0 /* this */
            iconst_4
            bipush 52
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        21: .line 2135
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        22: .line 2137
            iconst_2
            istore 2 /* relativePathStatus */
        23: .line 2138
            goto 26
        24: .line 2141
      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 2143
            iconst_1
            istore 2 /* relativePathStatus */
        26: .line 2148
      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 2149
            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 2151
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        29: .line 2152
            goto 31
        30: .line 2155
      StackMap locals:
      StackMap stack:
            iconst_2
            istore 2 /* relativePathStatus */
        31: .line 2158
      StackMap locals:
      StackMap stack:
            iload 2 /* relativePathStatus */
            ifeq 37
        32: .line 2160
            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 2162
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.RelativePathPattern:()V
        34: .line 2163
            goto 37
        35: .line 2164
      StackMap locals:
      StackMap stack:
            iload 2 /* relativePathStatus */
            iconst_2
            if_icmpne 37
        36: .line 2167
            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 2172
      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 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
            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 2174
            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 2175
            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 2174
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        42: .line 2176
            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 2189
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.FunctionCall:()Z
            pop
         1: .line 2190
            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 2206
            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 2208
            goto 6
         2: .line 2210
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         3: .line 2215
            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 2208
      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 2217
            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 2233
            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 2251
            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 2255
            iconst_m1
            istore 4 /* matchTypePos */
        start local 4 // int matchTypePos
         2: .line 2257
            aload 0 /* this */
            bipush 64
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(C)Z
            ifeq 7
         3: .line 2259
            bipush 51
            istore 3 /* axesType */
        start local 3 // int axesType
         4: .line 2261
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
         5: .line 2262
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
         6: .line 2263
            goto 34
        end local 3 // int axesType
         7: .line 2264
      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 2266
            aload 0 /* this */
            ldc "attribute"
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.tokenIs:(Ljava/lang/String;)Z
            ifeq 12
         9: .line 2268
            bipush 51
            istore 3 /* axesType */
        start local 3 // int axesType
        10: .line 2270
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        11: .line 2271
            goto 21
        end local 3 // int axesType
        12: .line 2272
      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 2274
            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 2275
            bipush 53
            istore 3 /* axesType */
        start local 3 // int axesType
        15: .line 2277
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        16: .line 2278
            goto 21
        end local 3 // int axesType
        17: .line 2281
      StackMap locals:
      StackMap stack:
            iconst_m1
            istore 3 /* axesType */
        start local 3 // int axesType
        18: .line 2283
            aload 0 /* this */
            ldc "ER_AXES_NOT_ALLOWED"
        19: .line 2284
            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 2283
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.error:(Ljava/lang/String;[Ljava/lang/Object;)V
        21: .line 2287
      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 2288
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        23: .line 2289
            goto 34
        end local 3 // int axesType
        24: .line 2290
      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 2292
            iload 1 /* isLeadingSlashPermitted */
            ifne 27
        26: .line 2295
            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 2297
      StackMap locals:
      StackMap stack:
            bipush 52
            istore 3 /* axesType */
        start local 3 // int axesType
        28: .line 2299
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        29: .line 2300
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        30: .line 2301
            goto 34
        end local 3 // int axesType
        31: .line 2304
      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 2305
            bipush 53
            istore 3 /* axesType */
        start local 3 // int axesType
        33: .line 2307
            aload 0 /* this */
            iconst_2
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.appendOp:(II)V
        34: .line 2311
      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 2313
            aload 0 /* this */
            iload 3 /* axesType */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.NodeTest:(I)V
        36: .line 2316
            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 2317
            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 2316
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        39: .line 2319
            goto 41
        40: .line 2321
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.Predicate:()V
        41: .line 2319
      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 2338
            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 2340
            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 2342
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.compiler.XPathParser.nextToken:()V
        45: .line 2344
            iconst_1
            istore 5 /* trailingSlashConsumed */
        start local 5 // boolean trailingSlashConsumed
        46: .line 2345
            goto 48
        end local 5 // boolean trailingSlashConsumed
        47: .line 2348
      StackMap locals:
      StackMap stack:
            iconst_0
            istore 5 /* trailingSlashConsumed */
        start local 5 // boolean trailingSlashConsumed
        48: .line 2352
      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 2353
            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 2352
            invokevirtual com.sun.org.apache.xpath.internal.compiler.OpMap.setOp:(II)V
        51: .line 2355
            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"