final class com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute extends com.sun.org.apache.xalan.internal.xsltc.compiler.Instruction
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute
  super_class: com.sun.org.apache.xalan.internal.xsltc.compiler.Instruction
{
  private final java.lang.String _name;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue _value;
    descriptor: Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(java.lang.String, java.lang.String, com.sun.org.apache.xalan.internal.xsltc.compiler.Parser, com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=5
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String value
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
        start local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode parent
         0: .line 52
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.Instruction.<init>:()V
         1: .line 55
            aload 0 /* this */
            aload 1 /* name */
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
         2: .line 56
            aload 0 /* this */
            aload 4 /* parent */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute.setParent:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
         3: .line 57
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* value */
            aload 3 /* parser */
            invokestatic com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue.create:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
         4: .line 58
            return
        end local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode parent
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
        end local 2 // java.lang.String value
        end local 1 // java.lang.String name
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
            0    5     1    name  Ljava/lang/String;
            0    5     2   value  Ljava/lang/String;
            0    5     3  parser  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;
            0    5     4  parent  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
    MethodParameters:
        Name  Flags
      name    
      value   
      parser  
      parent  

  public void display(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
        start local 1 // int indent
         0: .line 61
            aload 0 /* this */
            iload 1 /* indent */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute.indent:(I)V
         1: .line 62
            new java.lang.StringBuilder
            dup
            ldc "LiteralAttribute name="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " value="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic com.sun.org.apache.xalan.internal.xsltc.compiler.util.Util.println:(Ljava/lang/String;)V
         2: .line 63
            return
        end local 1 // int indent
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
            0    3     1  indent  I
    MethodParameters:
        Name  Flags
      indent  

  public com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type typeCheck(com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable);
    descriptor: (Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable stable
         0: .line 66
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue.typeCheck:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            pop
         1: .line 67
            aload 0 /* this */
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute.typeCheckContents:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            pop
         2: .line 68
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.Void:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            areturn
        end local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable stable
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
            0    3     1  stable  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;
    Exceptions:
      throws com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError
    MethodParameters:
        Name  Flags
      stable  

  protected boolean contextDependent();
    descriptor: ()Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
         0: .line 72
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue.contextDependent:()Z
            ireturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;

  public void translate(com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator, com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator);
    descriptor: (Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator classGen
        start local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator methodGen
         0: .line 76
            aload 1 /* classGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator.getConstantPool:()Lcom/sun/org/apache/bcel/internal/generic/ConstantPoolGen;
            astore 3 /* cpg */
        start local 3 // com.sun.org.apache.bcel.internal.generic.ConstantPoolGen cpg
         1: .line 77
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.getInstructionList:()Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
            astore 4 /* il */
        start local 4 // com.sun.org.apache.bcel.internal.generic.InstructionList il
         2: .line 80
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.loadHandler:()Lcom/sun/org/apache/bcel/internal/generic/Instruction;
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/Instruction;)Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            pop
         3: .line 82
            aload 4 /* il */
            new com.sun.org.apache.bcel.internal.generic.PUSH
            dup
            aload 3 /* cpg */
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
            invokespecial com.sun.org.apache.bcel.internal.generic.PUSH.<init>:(Lcom/sun/org/apache/bcel/internal/generic/ConstantPoolGen;Ljava/lang/String;)V
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/CompoundInstruction;)Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            pop
         4: .line 84
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue.translate:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
         5: .line 88
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute.getParent:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
            astore 5 /* parent */
        start local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode parent
         6: .line 89
            aload 5 /* parent */
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralElement
            ifeq 25
         7: .line 90
            aload 5 /* parent */
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralElement
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralElement.allAttributesUnique:()Z
            ifeq 25
         8: .line 92
            iconst_0
            istore 6 /* flags */
        start local 6 // int flags
         9: .line 93
            iconst_0
            istore 7 /* isHTMLAttrEmpty */
        start local 7 // boolean isHTMLAttrEmpty
        10: .line 94
            aload 5 /* parent */
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralElement
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralElement.getElemDesc:()Lcom/sun/org/apache/xml/internal/serializer/ElemDesc;
            astore 8 /* elemDesc */
        start local 8 // com.sun.org.apache.xml.internal.serializer.ElemDesc elemDesc
        11: .line 97
            aload 8 /* elemDesc */
            ifnull 18
        12: .line 98
            aload 8 /* elemDesc */
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
            iconst_4
            invokevirtual com.sun.org.apache.xml.internal.serializer.ElemDesc.isAttrFlagSet:(Ljava/lang/String;I)Z
            ifeq 16
        13: .line 99
            iload 6 /* flags */
            iconst_2
            ior
            istore 6 /* flags */
        14: .line 100
            iconst_1
            istore 7 /* isHTMLAttrEmpty */
        15: .line 101
            goto 18
        16: .line 102
      StackMap locals: com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator com.sun.org.apache.bcel.internal.generic.ConstantPoolGen com.sun.org.apache.bcel.internal.generic.InstructionList com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode int int com.sun.org.apache.xml.internal.serializer.ElemDesc
      StackMap stack:
            aload 8 /* elemDesc */
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
            iconst_2
            invokevirtual com.sun.org.apache.xml.internal.serializer.ElemDesc.isAttrFlagSet:(Ljava/lang/String;I)Z
            ifeq 18
        17: .line 103
            iload 6 /* flags */
            iconst_4
            ior
            istore 6 /* flags */
        18: .line 107
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.SimpleAttributeValue
            ifeq 22
        19: .line 108
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.SimpleAttributeValue
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.SimpleAttributeValue.toString:()Ljava/lang/String;
            astore 9 /* attrValue */
        start local 9 // java.lang.String attrValue
        20: .line 110
            aload 0 /* this */
            aload 9 /* attrValue */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute.hasBadChars:(Ljava/lang/String;)Z
            ifne 22
            iload 7 /* isHTMLAttrEmpty */
            ifne 22
        21: .line 111
            iload 6 /* flags */
            iconst_1
            ior
            istore 6 /* flags */
        end local 9 // java.lang.String attrValue
        22: .line 115
      StackMap locals:
      StackMap stack:
            aload 4 /* il */
            new com.sun.org.apache.bcel.internal.generic.PUSH
            dup
            aload 3 /* cpg */
            iload 6 /* flags */
            invokespecial com.sun.org.apache.bcel.internal.generic.PUSH.<init>:(Lcom/sun/org/apache/bcel/internal/generic/ConstantPoolGen;I)V
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/CompoundInstruction;)Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            pop
        23: .line 116
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.uniqueAttribute:()Lcom/sun/org/apache/bcel/internal/generic/Instruction;
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/Instruction;)Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            pop
        end local 8 // com.sun.org.apache.xml.internal.serializer.ElemDesc elemDesc
        end local 7 // boolean isHTMLAttrEmpty
        end local 6 // int flags
        24: .line 117
            goto 26
        25: .line 120
      StackMap locals:
      StackMap stack:
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.attribute:()Lcom/sun/org/apache/bcel/internal/generic/Instruction;
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/Instruction;)Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            pop
        26: .line 122
      StackMap locals:
      StackMap stack:
            return
        end local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode parent
        end local 4 // com.sun.org.apache.bcel.internal.generic.InstructionList il
        end local 3 // com.sun.org.apache.bcel.internal.generic.ConstantPoolGen cpg
        end local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator methodGen
        end local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator classGen
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   27     0             this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
            0   27     1         classGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;
            0   27     2        methodGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;
            1   27     3              cpg  Lcom/sun/org/apache/bcel/internal/generic/ConstantPoolGen;
            2   27     4               il  Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
            6   27     5           parent  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
            9   24     6            flags  I
           10   24     7  isHTMLAttrEmpty  Z
           11   24     8         elemDesc  Lcom/sun/org/apache/xml/internal/serializer/ElemDesc;
           20   22     9        attrValue  Ljava/lang/String;
    MethodParameters:
           Name  Flags
      classGen   
      methodGen  

  private boolean hasBadChars(java.lang.String);
    descriptor: (Ljava/lang/String;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
        start local 1 // java.lang.String value
         0: .line 133
            aload 1 /* value */
            invokevirtual java.lang.String.toCharArray:()[C
            astore 2 /* chars */
        start local 2 // char[] chars
         1: .line 134
            aload 2 /* chars */
            arraylength
            istore 3 /* size */
        start local 3 // int size
         2: .line 135
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 8
         4: .line 136
      StackMap locals: char[] int int
      StackMap stack:
            aload 2 /* chars */
            iload 4 /* i */
            caload
            istore 5 /* ch */
        start local 5 // char ch
         5: .line 137
            iload 5 /* ch */
            bipush 32
            if_icmplt 6
            bipush 126
            iload 5 /* ch */
            if_icmplt 6
            iload 5 /* ch */
            bipush 60
            if_icmpeq 6
            iload 5 /* ch */
            bipush 62
            if_icmpeq 6
            iload 5 /* ch */
            bipush 38
            if_icmpeq 6
            iload 5 /* ch */
            bipush 34
            if_icmpne 7
         6: .line 138
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // char ch
         7: .line 135
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            iload 3 /* size */
            if_icmplt 4
        end local 4 // int i
         9: .line 140
            iconst_0
            ireturn
        end local 3 // int size
        end local 2 // char[] chars
        end local 1 // java.lang.String value
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
            0   10     1  value  Ljava/lang/String;
            1   10     2  chars  [C
            2   10     3   size  I
            3    9     4      i  I
            5    7     5     ch  C
    MethodParameters:
       Name  Flags
      value  

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
         0: .line 147
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._name:Ljava/lang/String;
            areturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;

  public com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeValue getValue();
    descriptor: ()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
         0: .line 154
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute._value:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeValue;
            areturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LiteralAttribute this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LiteralAttribute;
}
SourceFile: "LiteralAttribute.java"