final class com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr extends com.sun.org.apache.xalan.internal.xsltc.compiler.Expression
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr
  super_class: com.sun.org.apache.xalan.internal.xsltc.compiler.Expression
{
  public static final int OR;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  public static final int AND;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private final int _op;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

  private static final java.lang.String[] Ops;
    descriptor: [Ljava/lang/String;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 47
            iconst_2
            anewarray java.lang.String
            dup
            iconst_0
            ldc "or"
            aastore
            dup
            iconst_1
            ldc "and"
            aastore
            putstatic com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.Ops:[Ljava/lang/String;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, com.sun.org.apache.xalan.internal.xsltc.compiler.Expression, com.sun.org.apache.xalan.internal.xsltc.compiler.Expression);
    descriptor: (ILcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
        start local 1 // int op
        start local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.Expression left
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.Expression right
         0: .line 55
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.<init>:()V
         1: .line 56
            aload 0 /* this */
            iload 1 /* op */
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
         2: .line 57
            aload 0 /* this */
            aload 2 /* left */
            dup_x1
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.setParent:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
         3: .line 58
            aload 0 /* this */
            aload 3 /* right */
            dup_x1
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.setParent:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
         4: .line 59
            return
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.Expression right
        end local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.Expression left
        end local 1 // int op
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            0    5     1     op  I
            0    5     2   left  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            0    5     3  right  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
    MethodParameters:
       Name  Flags
      op     
      left   
      right  

  public boolean hasPositionCall();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
         0: .line 66
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.hasPositionCall:()Z
            ifne 1
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.hasPositionCall:()Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;

  public boolean hasLastCall();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
         0: .line 73
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.hasLastCall:()Z
            ifne 1
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.hasLastCall:()Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;

  public java.lang.Object evaluateAtCompileTime();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
         0: .line 82
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.evaluateAtCompileTime:()Ljava/lang/Object;
            astore 1 /* leftb */
        start local 1 // java.lang.Object leftb
         1: .line 83
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.evaluateAtCompileTime:()Ljava/lang/Object;
            astore 2 /* rightb */
        start local 2 // java.lang.Object rightb
         2: .line 86
            aload 1 /* leftb */
            ifnull 3
            aload 2 /* rightb */
            ifnonnull 4
         3: .line 87
      StackMap locals: java.lang.Object java.lang.Object
      StackMap stack:
            aconst_null
            areturn
         4: .line 90
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
            iconst_1
            if_icmpne 9
         5: .line 91
            aload 1 /* leftb */
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpne 7
            aload 2 /* rightb */
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpne 7
         6: .line 92
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            goto 8
      StackMap locals:
      StackMap stack:
         7: getstatic java.lang.Boolean.FALSE:Ljava/lang/Boolean;
         8: .line 91
      StackMap locals:
      StackMap stack: java.lang.Boolean
            areturn
         9: .line 95
      StackMap locals:
      StackMap stack:
            aload 1 /* leftb */
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpeq 10
            aload 2 /* rightb */
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            if_acmpne 11
        10: .line 96
      StackMap locals:
      StackMap stack:
            getstatic java.lang.Boolean.TRUE:Ljava/lang/Boolean;
            goto 12
      StackMap locals:
      StackMap stack:
        11: getstatic java.lang.Boolean.FALSE:Ljava/lang/Boolean;
        12: .line 95
      StackMap locals:
      StackMap stack: java.lang.Boolean
            areturn
        end local 2 // java.lang.Object rightb
        end local 1 // java.lang.Object leftb
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   13     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            1   13     1   leftb  Ljava/lang/Object;
            2   13     2  rightb  Ljava/lang/Object;

  public int getOp();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
         0: .line 105
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
            ireturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;

  public void setParser(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=2, locals=2, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
         0: .line 113
            aload 0 /* this */
            aload 1 /* parser */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.setParser:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
         1: .line 114
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* parser */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.setParser:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
         2: .line 115
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* parser */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.setParser:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;)V
         3: .line 116
            return
        end local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.Parser parser
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            0    4     1  parser  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Parser;
    MethodParameters:
        Name  Flags
      parser  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
         0: .line 122
            new java.lang.StringBuilder
            dup
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.Ops:[Ljava/lang/String;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
            aaload
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            bipush 40
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;

  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=5, locals=8, args_size=2
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
        start local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable stable
         0: .line 130
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.typeCheck:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            astore 2 /* tleft */
        start local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type tleft
         1: .line 131
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* stable */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.typeCheck:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            astore 3 /* tright */
        start local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type tright
         2: .line 134
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType
            dup
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.Void:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            aload 2 /* tleft */
            aload 3 /* tright */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.<init>:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;)V
            astore 4 /* wantType */
        start local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType wantType
         3: .line 135
            aload 0 /* this */
            aload 1 /* stable */
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.Ops:[Ljava/lang/String;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
            aaload
            aload 4 /* wantType */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.lookupPrimop:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;Ljava/lang/String;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodType;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodType;
            astore 5 /* haveType */
        start local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType haveType
         4: .line 138
            aload 5 /* haveType */
            ifnull 12
         5: .line 140
            aload 5 /* haveType */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.argsType:()Ljava/util/List;
            iconst_0
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type
            astore 6 /* arg1 */
        start local 6 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type arg1
         6: .line 141
            aload 6 /* arg1 */
            aload 2 /* tleft */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.identicalTo:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;)Z
            ifne 8
         7: .line 142
            aload 0 /* this */
            new com.sun.org.apache.xalan.internal.xsltc.compiler.CastExpr
            dup
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 6 /* arg1 */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.CastExpr.<init>:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;)V
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
         8: .line 144
      StackMap locals: com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type
      StackMap stack:
            aload 5 /* haveType */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.argsType:()Ljava/util/List;
            iconst_1
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type
            astore 7 /* arg2 */
        start local 7 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type arg2
         9: .line 145
            aload 7 /* arg2 */
            aload 3 /* tright */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type.identicalTo:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;)Z
            ifne 11
        10: .line 146
            aload 0 /* this */
            new com.sun.org.apache.xalan.internal.xsltc.compiler.CastExpr
            dup
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 6 /* arg1 */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.CastExpr.<init>:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;)V
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
        11: .line 148
      StackMap locals: com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type
      StackMap stack:
            aload 0 /* this */
            aload 5 /* haveType */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType.resultType:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            dup_x1
            putfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._type:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            areturn
        end local 7 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type arg2
        end local 6 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type arg1
        12: .line 150
      StackMap locals:
      StackMap stack:
            new com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError
            dup
            aload 0 /* this */
            invokespecial com.sun.org.apache.xalan.internal.xsltc.compiler.util.TypeCheckError.<init>:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;)V
            athrow
        end local 5 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType haveType
        end local 4 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType wantType
        end local 3 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type tright
        end local 2 // com.sun.org.apache.xalan.internal.xsltc.compiler.util.Type tleft
        end local 1 // com.sun.org.apache.xalan.internal.xsltc.compiler.SymbolTable stable
        end local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            0   13     1    stable  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SymbolTable;
            1   13     2     tleft  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            2   13     3    tright  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            3   13     4  wantType  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodType;
            4   13     5  haveType  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodType;
            6   12     6      arg1  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
            9   12     7      arg2  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/Type;
    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=3, locals=3, args_size=3
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr 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 157
            aload 0 /* this */
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.translateDesynthesized:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
         1: .line 158
            aload 0 /* this */
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.synthesize:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
         2: .line 159
            return
        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.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            0    3     1   classGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;
            0    3     2  methodGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;
    MethodParameters:
           Name  Flags
      classGen   
      methodGen  

  public void translateDesynthesized(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=6, args_size=3
        start local 0 // com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr 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 167
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodGenerator.getInstructionList:()Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
            astore 3 /* il */
        start local 3 // com.sun.org.apache.bcel.internal.generic.InstructionList il
         1: .line 168
            aload 0 /* this */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.getParent:()Lcom/sun/org/apache/xalan/internal/xsltc/compiler/SyntaxTreeNode;
            pop
         2: .line 171
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._op:I
            iconst_1
            if_icmpne 25
         3: .line 174
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.translateDesynthesized:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
         4: .line 177
            aload 3 /* il */
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.NOP: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;
            astore 4 /* middle */
        start local 4 // com.sun.org.apache.bcel.internal.generic.InstructionHandle middle
         5: .line 180
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.translateDesynthesized:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
         6: .line 183
            aload 3 /* il */
            getstatic com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.NOP: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;
            astore 5 /* after */
        start local 5 // com.sun.org.apache.bcel.internal.generic.InstructionHandle after
         7: .line 186
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            pop
         8: .line 190
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr
            ifeq 12
         9: .line 191
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.getOp:()I
            ifne 12
        10: .line 192
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 4 /* middle */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.backPatchTrueList:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        11: .line 193
            goto 16
        12: .line 194
      StackMap locals: com.sun.org.apache.bcel.internal.generic.InstructionList com.sun.org.apache.bcel.internal.generic.InstructionHandle com.sun.org.apache.bcel.internal.generic.InstructionHandle
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.NotCall
            ifeq 15
        13: .line 195
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 4 /* middle */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.backPatchTrueList:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        14: .line 196
            goto 16
        15: .line 198
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            pop
        16: .line 203
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr
            ifeq 20
        17: .line 204
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            checkcast com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr.getOp:()I
            ifne 20
        18: .line 205
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 5 /* after */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.backPatchTrueList:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        19: .line 206
            goto 32
        20: .line 207
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            instanceof com.sun.org.apache.xalan.internal.xsltc.compiler.NotCall
            ifeq 23
        21: .line 208
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 5 /* after */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.backPatchTrueList:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        22: .line 209
            goto 32
        23: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            pop
        end local 5 // com.sun.org.apache.bcel.internal.generic.InstructionHandle after
        end local 4 // com.sun.org.apache.bcel.internal.generic.InstructionHandle middle
        24: .line 213
            goto 32
        25: .line 217
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.translateDesynthesized:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
        26: .line 221
            aload 3 /* il */
            new com.sun.org.apache.bcel.internal.generic.GOTO
            dup
            aconst_null
            invokespecial com.sun.org.apache.bcel.internal.generic.GOTO.<init>:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionList.append:(Lcom/sun/org/apache/bcel/internal/generic/BranchInstruction;)Lcom/sun/org/apache/bcel/internal/generic/BranchHandle;
            astore 4 /* ih */
        start local 4 // com.sun.org.apache.bcel.internal.generic.InstructionHandle ih
        27: .line 224
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            aload 1 /* classGen */
            aload 2 /* methodGen */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.Expression.translateDesynthesized:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;)V
        28: .line 226
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 4 /* ih */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.backPatch:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        29: .line 227
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._left:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 4 /* ih */
            invokevirtual com.sun.org.apache.bcel.internal.generic.InstructionHandle.getNext:()Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.backPatch:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)V
        30: .line 229
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._falseList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            pop
        31: .line 230
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 4 /* ih */
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.add:(Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            aload 0 /* this */
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.LogicalExpr._right:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/Expression;
            getfield com.sun.org.apache.xalan.internal.xsltc.compiler.Expression._trueList:Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            invokevirtual com.sun.org.apache.xalan.internal.xsltc.compiler.FlowList.append:(Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;)Lcom/sun/org/apache/xalan/internal/xsltc/compiler/FlowList;
            pop
        end local 4 // com.sun.org.apache.bcel.internal.generic.InstructionHandle ih
        32: .line 232
      StackMap locals:
      StackMap stack:
            return
        end local 3 // com.sun.org.apache.bcel.internal.generic.InstructionList il
        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.LogicalExpr this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   33     0       this  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/LogicalExpr;
            0   33     1   classGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/ClassGenerator;
            0   33     2  methodGen  Lcom/sun/org/apache/xalan/internal/xsltc/compiler/util/MethodGenerator;
            1   33     3         il  Lcom/sun/org/apache/bcel/internal/generic/InstructionList;
            5   24     4     middle  Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
            7   24     5      after  Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
           27   32     4         ih  Lcom/sun/org/apache/bcel/internal/generic/InstructionHandle;
    MethodParameters:
           Name  Flags
      classGen   
      methodGen  
}
SourceFile: "LogicalExpr.java"