final class com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet extends com.sun.org.apache.xalan.internal.xsltc.compiler.TopLevelElement
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet
  super_class: com.sun.org.apache.xalan.internal.xsltc.compiler.TopLevelElement
{
  private static final java.lang.String AttributeSetPrefix;
    descriptor: Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: "$as$"

  private com.sun.org.apache.xalan.internal.xsltc.compiler.QName _name;
    descriptor: Lcom/sun/org/apache/xalan/internal/xsltc/compiler/QName;
    flags: (0x0002) ACC_PRIVATE

  private com.sun.org.apache.xalan.internal.xsltc.compiler.UseAttributeSets _useSets;
    descriptor: Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
    flags: (0x0002) ACC_PRIVATE

  private com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet _mergeSet;
    descriptor: Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String _method;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

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

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
         0: .line 48
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.TopLevelElement.<init>:()V
         1: .line 58
            aload 0 /* this */
            iconst_0
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._ignore:Z
         2: .line 48
            return
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;

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

  public java.lang.String getMethodName();
    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.AttributeSet this
         0: .line 72
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._method:Ljava/lang/String;
            areturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;

  public void ignore();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
         0: .line 82
            aload 0 /* this */
            iconst_1
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._ignore:Z
         1: .line 83
            return
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;

  public void parseContents(com.sun.org.apache.xalan.internal.xsltc.compiler.Parser);
    descriptor: (Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=9, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
         0: .line 92
            aload 0 /* this */
            ldc "name"
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.getAttribute:(Ljava/lang/String;)Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         1: .line 94
            aload 2 /* name */
            invokestatic com.sun.org.apache.xml.internal.utils.XML11Char.isXML11ValidQName:(Ljava/lang/String;)Z
            ifne 4
         2: .line 95
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg
            dup
            ldc "INVALID_QNAME_ERR"
            aload 2 /* name */
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.<init>:(Ljava/lang/String;Ljava/lang/Object;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
            astore 3 /* err */
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg err
         3: .line 96
            aload 1 /* parser */
            iconst_3
            aload 3 /* err */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.reportError:(ILcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;)V
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg err
         4: .line 98
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            aload 1 /* parser */
            aload 2 /* name */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.getQNameIgnoreDefaultNs:(Ljava/lang/String;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/QName;
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._name:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/QName;
         5: .line 99
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._name:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/QName;
            ifnull 6
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._name:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/QName;
            ldc ""
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.QName.equals:(Ljava/lang/Object;)Z
            ifeq 8
         6: .line 100
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg
            dup
            ldc "UNNAMED_ATTRIBSET_ERR"
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.<init>:(Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
            astore 3 /* msg */
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg msg
         7: .line 101
            aload 1 /* parser */
            iconst_3
            aload 3 /* msg */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.reportError:(ILcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;)V
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg msg
         8: .line 105
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            ldc "use-attribute-sets"
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.getAttribute:(Ljava/lang/String;)Ljava/lang/String;
            astore 3 /* useSets */
        start local 3 // java.lang.String useSets
         9: .line 106
            aload 3 /* useSets */
            invokevirtual java.lang.String.length:()I
            ifle 14
        10: .line 107
            aload 3 /* useSets */
            invokestatic com.sun.org.apache.xalan.internal.xsltc.compiler.util.Util.isValidQNames:(Ljava/lang/String;)Z
            ifne 13
        11: .line 108
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg
            dup
            ldc "INVALID_QNAME_ERR"
            aload 3 /* useSets */
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.<init>:(Ljava/lang/String;Ljava/lang/Object;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
            astore 4 /* err */
        start local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg err
        12: .line 109
            aload 1 /* parser */
            iconst_3
            aload 4 /* err */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.reportError:(ILcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;)V
        end local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg err
        13: .line 111
      StackMap locals: java.lang.String
      StackMap stack:
            aload 0 /* this */
            new com.sun.org.apache.xalan.internal.xsltc.compiler.UseAttributeSets
            dup
            aload 3 /* useSets */
            aload 1 /* parser */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.UseAttributeSets.<init>:(Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._useSets:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
        14: .line 116
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.getContents:()Ljava/util/List;
            astore 4 /* contents */
        start local 4 // java.util.List contents
        15: .line 117
            aload 4 /* contents */
            invokeinterface java.util.List.size:()I
            istore 5 /* count */
        start local 5 // int count
        16: .line 118
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        17: goto 27
        18: .line 119
      StackMap locals: java.util.List int int
      StackMap stack:
            aload 4 /* contents */
            iload 6 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode
            astore 7 /* child */
        start local 7 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode child
        19: .line 120
            aload 7 /* child */
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute
            ifeq 23
        20: .line 121
            aload 1 /* parser */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.getSymbolTable:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;
            aload 7 /* child */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable.setCurrentNode:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
        21: .line 122
            aload 7 /* child */
            aload 1 /* parser */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode.parseContents:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
        22: .line 123
            goto 26
        23: .line 124
      StackMap locals: com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode
      StackMap stack:
            aload 7 /* child */
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.Text
            ifne 26
        24: .line 128
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg
            dup
            ldc "ILLEGAL_CHILD_ERR"
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg.<init>:(Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
            astore 8 /* msg */
        start local 8 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg msg
        25: .line 129
            aload 1 /* parser */
            iconst_3
            aload 8 /* msg */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.reportError:(ILcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;)V
        end local 8 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.ErrorMsg msg
        end local 7 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode child
        26: .line 118
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        27: iload 6 /* i */
            iload 5 /* count */
            if_icmplt 18
        end local 6 // int i
        28: .line 134
            aload 1 /* parser */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Parser.getSymbolTable:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable.setCurrentNode:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
        29: .line 135
            return
        end local 5 // int count
        end local 4 // java.util.List contents
        end local 3 // java.lang.String useSets
        end local 2 // java.lang.String name
        end local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   30     0      this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            0   30     1    parser  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;
            1   30     2      name  Ljava/lang/String;
            3    4     3       err  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;
            7    8     3       msg  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;
            9   30     3   useSets  Ljava/lang/String;
           12   13     4       err  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;
           15   30     4  contents  Ljava/util/List<Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;>;
           16   30     5     count  I
           17   28     6         i  I
           19   26     7     child  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
           25   26     8       msg  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ErrorMsg;
    MethodParameters:
        Name  Flags
      parser  

  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=4, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable stable
         0: .line 142
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._ignore:Z
            ifeq 1
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.Void:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            areturn
         1: .line 145
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* stable */
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable.addAttributeSet:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._mergeSet:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
         2: .line 147
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            ldc "$as$"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.getXSLTC:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/XSLTC;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.XSLTC.nextAttributeSetSerial:()I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._method:Ljava/lang/String;
         3: .line 149
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._useSets:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
            ifnull 4
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._useSets:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.UseAttributeSets.typeCheck:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            pop
         4: .line 150
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.typeCheckContents:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            pop
         5: .line 151
            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.AttributeSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            0    6     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  

  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=4, locals=7, args_size=3
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet 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 159
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._ignore:Z
            ifeq 1
            return
         1: .line 162
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.AttributeSetMethodGenerator
            dup
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._method:Ljava/lang/String;
            aload 1 /* classGen */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.AttributeSetMethodGenerator.<init>:(Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;)V
            astore 2 /* methodGen */
         2: .line 166
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._mergeSet:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            ifnull 15
         3: .line 167
            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
         4: .line 168
            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
         5: .line 169
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._mergeSet:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.getMethodName:()Ljava/lang/String;
            astore 5 /* methodName */
        start local 5 // java.lang.String methodName
         6: .line 171
            aload 4 /* il */
            aload 1 /* classGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator.loadTranslet:()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
         7: .line 172
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.loadDOM:()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
         8: .line 173
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.loadIterator:()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
         9: .line 174
            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
        10: .line 175
            aload 4 /* il */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.loadCurrentNode:()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
        11: .line 176
            aload 3 /* cpg */
            aload 1 /* classGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator.getClassName:()Ljava/lang/String;
        12: .line 177
            aload 5 /* methodName */
            ldc "(Lcom/sun/org/apache/xalan/internal/xsltc/DOM;Lcom/sun/org/apache/xml/internal/dtm/DTMAxisIterator;Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;I)V"
        13: .line 176
            invokevirtual com.sun.org.apache.bcel.internal.generic.ConstantPoolGen.addMethodref:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I
            istore 6 /* method */
        start local 6 // int method
        14: .line 178
            aload 4 /* il */
            new com.sun.org.apache.bcel.internal.generic.INVOKESPECIAL
            dup
            iload 6 /* method */
            invokespecial com.sun.org.apache.bcel.internal.generic.INVOKESPECIAL.<init>:(I)V
            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 6 // int method
        end local 5 // java.lang.String methodName
        end local 4 // com.sun.org.apache.bcel.internal.generic.InstructionList il
        end local 3 // com.sun.org.apache.bcel.internal.generic.ConstantPoolGen cpg
        15: .line 183
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._useSets:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
            ifnull 16
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet._useSets:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/UseAttributeSets;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.UseAttributeSets.translate:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
        16: .line 186
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.elements:()Ljava/util/Iterator;
            astore 3 /* attributes */
        start local 3 // java.util.Iterator attributes
        17: .line 187
            goto 22
        18: .line 188
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* attributes */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode
            astore 4 /* element */
        start local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode element
        19: .line 189
            aload 4 /* element */
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute
            ifeq 22
        20: .line 190
            aload 4 /* element */
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute
            astore 5 /* attribute */
        start local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute attribute
        21: .line 191
            aload 5 /* attribute */
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute.translate:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
        end local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute attribute
        end local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.SyntaxTreeNode element
        22: .line 187
      StackMap locals:
      StackMap stack:
            aload 3 /* attributes */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 18
        23: .line 194
            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
        24: .line 195
            aload 4 /* il */
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.RETURN:Lcom/sun/org/apache/bcel/internal/generic/ReturnInstruction;
            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
        25: .line 197
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.ClassGenerator.addMethod:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
        26: .line 198
            return
        end local 4 // com.sun.org.apache.bcel.internal.generic.InstructionList il
        end local 3 // java.util.Iterator attributes
        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.AttributeSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   27     0        this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            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;
            4   15     3         cpg  Lcom/sun/org/apache/bcel/internal/generic/ConstantPoolGen;
            5   15     4          il  Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
            6   15     5  methodName  Ljava/lang/String;
           14   15     6      method  I
           17   27     3  attributes  Ljava/util/Iterator<Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;>;
           19   22     4     element  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
           21   22     5   attribute  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/XslAttribute;
           24   27     4          il  Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
    MethodParameters:
           Name  Flags
      classGen   
      methodGen  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
         0: .line 201
            new java.lang.StringBuffer
            dup
            ldc "attribute-set: "
            invokespecial java.lang.StringBuffer.<init>:(Ljava/lang/String;)V
            astore 1 /* buf */
        start local 1 // java.lang.StringBuffer buf
         1: .line 203
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet.elements:()Ljava/util/Iterator;
            astore 2 /* attributes */
        start local 2 // java.util.Iterator attributes
         2: .line 204
            goto 6
         3: .line 206
      StackMap locals: java.lang.StringBuffer java.util.Iterator
      StackMap stack:
            aload 2 /* attributes */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute
         4: .line 205
            astore 3 /* attribute */
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute attribute
         5: .line 207
            aload 1 /* buf */
            aload 3 /* attribute */
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/Object;)Ljava/lang/StringBuffer;
            pop
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.XslAttribute attribute
         6: .line 204
      StackMap locals:
      StackMap stack:
            aload 2 /* attributes */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 209
            aload 1 /* buf */
            invokevirtual java.lang.StringBuffer.toString:()Ljava/lang/String;
            areturn
        end local 2 // java.util.Iterator attributes
        end local 1 // java.lang.StringBuffer buf
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.AttributeSet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/AttributeSet;
            1    8     1         buf  Ljava/lang/StringBuffer;
            2    8     2  attributes  Ljava/util/Iterator<Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;>;
            5    6     3   attribute  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/XslAttribute;
}
SourceFile: "AttributeSet.java"