public class com.sun.org.apache.xpath.internal.operations.Variable extends com.sun.org.apache.xpath.internal.Expression implements com.sun.org.apache.xpath.internal.axes.PathComponent
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.sun.org.apache.xpath.internal.operations.Variable
  super_class: com.sun.org.apache.xpath.internal.Expression
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: -4334975375609297049

  private boolean m_fixUpWasCalled;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  protected com.sun.org.apache.xml.internal.utils.QName m_qname;
    descriptor: Lcom/sun/org/apache/xml/internal/utils/QName;
    flags: (0x0004) ACC_PROTECTED

  protected int m_index;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean m_isGlobal;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

  static final java.lang.String PSUEDOVARNAMESPACE;
    descriptor: Ljava/lang/String;
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: "http://xml.apache.org/xalan/psuedovar"

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 43
            aload 0 /* this */
            invokespecial com.sun.org.apache.xpath.internal.Expression.<init>:()V
         1: .line 48
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_fixUpWasCalled:Z
         2: .line 106
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_isGlobal:Z
         3: .line 43
            return
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;

  public void setIndex(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // int index
         0: .line 69
            aload 0 /* this */
            iload 1 /* index */
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_index:I
         1: .line 70
            return
        end local 1 // int index
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

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

  public void setIsGlobal(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // boolean isGlobal
         0: .line 89
            aload 0 /* this */
            iload 1 /* isGlobal */
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_isGlobal:Z
         1: .line 90
            return
        end local 1 // boolean isGlobal
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    2     1  isGlobal  Z
    MethodParameters:
          Name  Flags
      isGlobal  

  public boolean getGlobal();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 99
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_isGlobal:Z
            ireturn
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;

  public void fixupVariables(java.util.List<com.sun.org.apache.xml.internal.utils.QName>, );
    descriptor: (Ljava/util/List;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // java.util.List vars
        start local 2 // int globalsSize
         0: .line 120
            aload 0 /* this */
            iconst_1
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_fixUpWasCalled:Z
         1: .line 121
            aload 1 /* vars */
            invokeinterface java.util.List.size:()I
            pop
         2: .line 123
            aload 1 /* vars */
            invokeinterface java.util.List.size:()I
            iconst_1
            isub
            istore 3 /* i */
        start local 3 // int i
         3: goto 13
         4: .line 125
      StackMap locals: int
      StackMap stack:
            aload 1 /* vars */
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xml.internal.utils.QName
            astore 4 /* qn */
        start local 4 // com.sun.org.apache.xml.internal.utils.QName qn
         5: .line 127
            aload 4 /* qn */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.equals:(Ljava/lang/Object;)Z
            ifeq 12
         6: .line 130
            iload 3 /* i */
            iload 2 /* globalsSize */
            if_icmpge 10
         7: .line 132
            aload 0 /* this */
            iconst_1
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_isGlobal:Z
         8: .line 133
            aload 0 /* this */
            iload 3 /* i */
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_index:I
         9: .line 134
            goto 11
        10: .line 137
      StackMap locals: com.sun.org.apache.xml.internal.utils.QName
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            iload 2 /* globalsSize */
            isub
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_index:I
        11: .line 140
      StackMap locals:
      StackMap stack:
            return
        end local 4 // com.sun.org.apache.xml.internal.utils.QName qn
        12: .line 123
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ -1
      StackMap locals:
      StackMap stack:
        13: iload 3 /* i */
            ifge 4
        end local 3 // int i
        14: .line 144
            ldc "ER_COULD_NOT_FIND_VAR"
        15: .line 145
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.toString:()Ljava/lang/String;
            aastore
        16: .line 144
            invokestatic com.sun.org.apache.xalan.internal.res.XSLMessages.createXPATHMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            astore 3 /* msg */
        start local 3 // java.lang.String msg
        17: .line 147
            new javax.xml.transform.TransformerException
            dup
            aload 3 /* msg */
            aload 0 /* this */
            invokespecial javax.xml.transform.TransformerException.<init>:(Ljava/lang/String;Ljavax/xml/transform/SourceLocator;)V
            astore 4 /* te */
        start local 4 // javax.xml.transform.TransformerException te
        18: .line 149
            new com.sun.org.apache.xml.internal.utils.WrappedRuntimeException
            dup
            aload 4 /* te */
            invokespecial com.sun.org.apache.xml.internal.utils.WrappedRuntimeException.<init>:(Ljava/lang/Exception;)V
            athrow
        end local 4 // javax.xml.transform.TransformerException te
        end local 3 // java.lang.String msg
        end local 2 // int globalsSize
        end local 1 // java.util.List vars
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0   19     1         vars  Ljava/util/List<Lcom/sun/org/apache/xml/internal/utils/QName;>;
            0   19     2  globalsSize  I
            3   14     3            i  I
            5   12     4           qn  Lcom/sun/org/apache/xml/internal/utils/QName;
           17   19     3          msg  Ljava/lang/String;
           18   19     4           te  Ljavax/xml/transform/TransformerException;
    Signature: (Ljava/util/List<Lcom/sun/org/apache/xml/internal/utils/QName;>;I)V
    MethodParameters:
             Name  Flags
      vars         
      globalsSize  

  public void setQName(com.sun.org.apache.xml.internal.utils.QName);
    descriptor: (Lcom/sun/org/apache/xml/internal/utils/QName;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // com.sun.org.apache.xml.internal.utils.QName qname
         0: .line 161
            aload 0 /* this */
            aload 1 /* qname */
            putfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
         1: .line 162
            return
        end local 1 // com.sun.org.apache.xml.internal.utils.QName qname
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    2     1  qname  Lcom/sun/org/apache/xml/internal/utils/QName;
    MethodParameters:
       Name  Flags
      qname  

  public com.sun.org.apache.xml.internal.utils.QName getQName();
    descriptor: ()Lcom/sun/org/apache/xml/internal/utils/QName;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 171
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            areturn
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;

  public com.sun.org.apache.xpath.internal.objects.XObject execute(com.sun.org.apache.xpath.internal.XPathContext);
    descriptor: (Lcom/sun/org/apache/xpath/internal/XPathContext;)Lcom/sun/org/apache/xpath/internal/objects/XObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // com.sun.org.apache.xpath.internal.XPathContext xctxt
         0: .line 189
            aload 0 /* this */
            aload 1 /* xctxt */
            iconst_0
            invokevirtual com.sun.org.apache.xpath.internal.operations.Variable.execute:(Lcom/sun/org/apache/xpath/internal/XPathContext;Z)Lcom/sun/org/apache/xpath/internal/objects/XObject;
            areturn
        end local 1 // com.sun.org.apache.xpath.internal.XPathContext xctxt
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    1     1  xctxt  Lcom/sun/org/apache/xpath/internal/XPathContext;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      xctxt  

  public com.sun.org.apache.xpath.internal.objects.XObject execute(com.sun.org.apache.xpath.internal.XPathContext, boolean);
    descriptor: (Lcom/sun/org/apache/xpath/internal/XPathContext;Z)Lcom/sun/org/apache/xpath/internal/objects/XObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // com.sun.org.apache.xpath.internal.XPathContext xctxt
        start local 2 // boolean destructiveOK
         0: .line 207
            aload 1 /* xctxt */
            invokevirtual com.sun.org.apache.xpath.internal.XPathContext.getNamespaceContext:()Lcom/sun/org/apache/xml/internal/utils/PrefixResolver;
            pop
         1: .line 212
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_fixUpWasCalled:Z
            ifeq 7
         2: .line 214
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_isGlobal:Z
            ifeq 5
         3: .line 215
            aload 1 /* xctxt */
            invokevirtual com.sun.org.apache.xpath.internal.XPathContext.getVarStack:()Lcom/sun/org/apache/xpath/internal/VariableStack;
            aload 1 /* xctxt */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_index:I
            iload 2 /* destructiveOK */
            invokevirtual com.sun.org.apache.xpath.internal.VariableStack.getGlobalVariable:(Lcom/sun/org/apache/xpath/internal/XPathContext;IZ)Lcom/sun/org/apache/xpath/internal/objects/XObject;
            astore 3 /* result */
        start local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
         4: goto 8
        end local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
         5: .line 217
      StackMap locals:
      StackMap stack:
            aload 1 /* xctxt */
            invokevirtual com.sun.org.apache.xpath.internal.XPathContext.getVarStack:()Lcom/sun/org/apache/xpath/internal/VariableStack;
            aload 1 /* xctxt */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_index:I
            iload 2 /* destructiveOK */
            invokevirtual com.sun.org.apache.xpath.internal.VariableStack.getLocalVariable:(Lcom/sun/org/apache/xpath/internal/XPathContext;IZ)Lcom/sun/org/apache/xpath/internal/objects/XObject;
            astore 3 /* result */
        start local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
         6: .line 218
            goto 8
        end local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
         7: .line 220
      StackMap locals:
      StackMap stack:
            aload 1 /* xctxt */
            invokevirtual com.sun.org.apache.xpath.internal.XPathContext.getVarStack:()Lcom/sun/org/apache/xpath/internal/VariableStack;
            aload 1 /* xctxt */
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xpath.internal.VariableStack.getVariableOrParam:(Lcom/sun/org/apache/xpath/internal/XPathContext;Lcom/sun/org/apache/xml/internal/utils/QName;)Lcom/sun/org/apache/xpath/internal/objects/XObject;
            astore 3 /* result */
        start local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
         8: .line 223
      StackMap locals: com.sun.org.apache.xpath.internal.objects.XObject
      StackMap stack:
            aload 3 /* result */
            ifnonnull 13
         9: .line 226
            aload 0 /* this */
            aload 1 /* xctxt */
            ldc "WG_ILLEGAL_VARIABLE_REFERENCE"
        10: .line 227
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.getLocalPart:()Ljava/lang/String;
            aastore
        11: .line 226
            invokevirtual com.sun.org.apache.xpath.internal.operations.Variable.warn:(Lcom/sun/org/apache/xpath/internal/XPathContext;Ljava/lang/String;[Ljava/lang/Object;)V
        12: .line 232
            new com.sun.org.apache.xpath.internal.objects.XNodeSet
            dup
            aload 1 /* xctxt */
            invokevirtual com.sun.org.apache.xpath.internal.XPathContext.getDTMManager:()Lcom/sun/org/apache/xml/internal/dtm/DTMManager;
            invokespecial com.sun.org.apache.xpath.internal.objects.XNodeSet.<init>:(Lcom/sun/org/apache/xml/internal/dtm/DTMManager;)V
            astore 3 /* result */
        13: .line 235
      StackMap locals:
      StackMap stack:
            aload 3 /* result */
            areturn
        end local 3 // com.sun.org.apache.xpath.internal.objects.XObject result
        end local 2 // boolean destructiveOK
        end local 1 // com.sun.org.apache.xpath.internal.XPathContext xctxt
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0   14     1          xctxt  Lcom/sun/org/apache/xpath/internal/XPathContext;
            0   14     2  destructiveOK  Z
            4    5     3         result  Lcom/sun/org/apache/xpath/internal/objects/XObject;
            6    7     3         result  Lcom/sun/org/apache/xpath/internal/objects/XObject;
            8   14     3         result  Lcom/sun/org/apache/xpath/internal/objects/XObject;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
               Name  Flags
      xctxt          
      destructiveOK  

  public boolean isStableNumber();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 320
            iconst_1
            ireturn
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;

  public int getAnalysisBits();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 347
            ldc 67108864
            ireturn
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;

  public void callVisitors(com.sun.org.apache.xpath.internal.ExpressionOwner, com.sun.org.apache.xpath.internal.XPathVisitor);
    descriptor: (Lcom/sun/org/apache/xpath/internal/ExpressionOwner;Lcom/sun/org/apache/xpath/internal/XPathVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // com.sun.org.apache.xpath.internal.ExpressionOwner owner
        start local 2 // com.sun.org.apache.xpath.internal.XPathVisitor visitor
         0: .line 356
            aload 2 /* visitor */
            aload 1 /* owner */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xpath.internal.XPathVisitor.visitVariableRef:(Lcom/sun/org/apache/xpath/internal/ExpressionOwner;Lcom/sun/org/apache/xpath/internal/operations/Variable;)Z
            pop
         1: .line 357
            return
        end local 2 // com.sun.org.apache.xpath.internal.XPathVisitor visitor
        end local 1 // com.sun.org.apache.xpath.internal.ExpressionOwner owner
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    2     1    owner  Lcom/sun/org/apache/xpath/internal/ExpressionOwner;
            0    2     2  visitor  Lcom/sun/org/apache/xpath/internal/XPathVisitor;
    MethodParameters:
         Name  Flags
      owner    
      visitor  

  public boolean deepEquals(com.sun.org.apache.xpath.internal.Expression);
    descriptor: (Lcom/sun/org/apache/xpath/internal/Expression;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
        start local 1 // com.sun.org.apache.xpath.internal.Expression expr
         0: .line 363
            aload 0 /* this */
            aload 1 /* expr */
            invokevirtual com.sun.org.apache.xpath.internal.operations.Variable.isSameClass:(Lcom/sun/org/apache/xpath/internal/Expression;)Z
            ifne 2
         1: .line 364
            iconst_0
            ireturn
         2: .line 366
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            aload 1 /* expr */
            checkcast com.sun.org.apache.xpath.internal.operations.Variable
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.equals:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 367
            iconst_0
            ireturn
         4: .line 377
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // com.sun.org.apache.xpath.internal.Expression expr
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            0    5     1  expr  Lcom/sun/org/apache/xpath/internal/Expression;
    MethodParameters:
      Name  Flags
      expr  

  public boolean isPsuedoVarRef();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
         0: .line 388
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.getNamespaceURI:()Ljava/lang/String;
            astore 1 /* ns */
        start local 1 // java.lang.String ns
         1: .line 389
            aload 1 /* ns */
            ifnull 4
            aload 1 /* ns */
            ldc "http://xml.apache.org/xalan/psuedovar"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 4
         2: .line 391
            aload 0 /* this */
            getfield com.sun.org.apache.xpath.internal.operations.Variable.m_qname:Lcom/sun/org/apache/xml/internal/utils/QName;
            invokevirtual com.sun.org.apache.xml.internal.utils.QName.getLocalName:()Ljava/lang/String;
            ldc "#"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 4
         3: .line 392
            iconst_1
            ireturn
         4: .line 394
      StackMap locals: java.lang.String
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.String ns
        end local 0 // com.sun.org.apache.xpath.internal.operations.Variable this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/sun/org/apache/xpath/internal/operations/Variable;
            1    5     1    ns  Ljava/lang/String;
}
SourceFile: "Variable.java"