public class org.springframework.expression.spel.ast.Ternary extends org.springframework.expression.spel.ast.SpelNodeImpl
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.expression.spel.ast.Ternary
  super_class: org.springframework.expression.spel.ast.SpelNodeImpl
{
  public void <init>(int, org.springframework.expression.spel.ast.SpelNodeImpl[]);
    descriptor: (I[Lorg/springframework/expression/spel/ast/SpelNodeImpl;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.springframework.expression.spel.ast.Ternary this
        start local 1 // int pos
        start local 2 // org.springframework.expression.spel.ast.SpelNodeImpl[] args
         0: .line 40
            aload 0 /* this */
            iload 1 /* pos */
            aload 2 /* args */
            invokespecial org.springframework.expression.spel.ast.SpelNodeImpl.<init>:(I[Lorg/springframework/expression/spel/ast/SpelNodeImpl;)V
         1: .line 41
            return
        end local 2 // org.springframework.expression.spel.ast.SpelNodeImpl[] args
        end local 1 // int pos
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/springframework/expression/spel/ast/Ternary;
            0    2     1   pos  I
            0    2     2  args  [Lorg/springframework/expression/spel/ast/SpelNodeImpl;
    MethodParameters:
      Name  Flags
      pos   
      args  

  public org.springframework.expression.TypedValue getValueInternal(org.springframework.expression.spel.ExpressionState);
    descriptor: (Lorg/springframework/expression/spel/ExpressionState;)Lorg/springframework/expression/TypedValue;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // org.springframework.expression.spel.ast.Ternary this
        start local 1 // org.springframework.expression.spel.ExpressionState state
         0: .line 53
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_0
            aaload
            aload 1 /* state */
            ldc Ljava/lang/Boolean;
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.getValue:(Lorg/springframework/expression/spel/ExpressionState;Ljava/lang/Class;)Ljava/lang/Object;
            checkcast java.lang.Boolean
            astore 2 /* value */
        start local 2 // java.lang.Boolean value
         1: .line 54
            aload 2 /* value */
            ifnonnull 5
         2: .line 55
            new org.springframework.expression.spel.SpelEvaluationException
            dup
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.expression.spel.ast.Ternary.getChild:(I)Lorg/springframework/expression/spel/SpelNode;
            invokeinterface org.springframework.expression.spel.SpelNode.getStartPosition:()I
         3: .line 56
            getstatic org.springframework.expression.spel.SpelMessage.TYPE_CONVERSION_ERROR:Lorg/springframework/expression/spel/SpelMessage;
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "null"
            aastore
            dup
            iconst_1
            ldc "boolean"
         4: .line 55
            aastore
            invokespecial org.springframework.expression.spel.SpelEvaluationException.<init>:(ILorg/springframework/expression/spel/SpelMessage;[Ljava/lang/Object;)V
            athrow
         5: .line 58
      StackMap locals: java.lang.Boolean
      StackMap stack:
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            aload 2 /* value */
            invokevirtual java.lang.Boolean.booleanValue:()Z
            ifeq 6
            iconst_1
            goto 7
      StackMap locals:
      StackMap stack: org.springframework.expression.spel.ast.SpelNodeImpl[]
         6: iconst_2
      StackMap locals: org.springframework.expression.spel.ast.Ternary org.springframework.expression.spel.ExpressionState java.lang.Boolean
      StackMap stack: org.springframework.expression.spel.ast.SpelNodeImpl[] int
         7: aaload
            aload 1 /* state */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.getValueInternal:(Lorg/springframework/expression/spel/ExpressionState;)Lorg/springframework/expression/TypedValue;
            astore 3 /* result */
        start local 3 // org.springframework.expression.TypedValue result
         8: .line 59
            aload 0 /* this */
            invokevirtual org.springframework.expression.spel.ast.Ternary.computeExitTypeDescriptor:()V
         9: .line 60
            aload 3 /* result */
            areturn
        end local 3 // org.springframework.expression.TypedValue result
        end local 2 // java.lang.Boolean value
        end local 1 // org.springframework.expression.spel.ExpressionState state
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0    this  Lorg/springframework/expression/spel/ast/Ternary;
            0   10     1   state  Lorg/springframework/expression/spel/ExpressionState;
            1   10     2   value  Ljava/lang/Boolean;
            8   10     3  result  Lorg/springframework/expression/TypedValue;
    Exceptions:
      throws org.springframework.expression.EvaluationException
    MethodParameters:
       Name  Flags
      state  

  public java.lang.String toStringAST();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.springframework.expression.spel.ast.Ternary this
         0: .line 65
            new java.lang.StringBuilder
            dup
            aload 0 /* this */
            iconst_0
            invokevirtual org.springframework.expression.spel.ast.Ternary.getChild:(I)Lorg/springframework/expression/spel/SpelNode;
            invokeinterface org.springframework.expression.spel.SpelNode.toStringAST:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " ? "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            iconst_1
            invokevirtual org.springframework.expression.spel.ast.Ternary.getChild:(I)Lorg/springframework/expression/spel/SpelNode;
            invokeinterface org.springframework.expression.spel.SpelNode.toStringAST:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc " : "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            iconst_2
            invokevirtual org.springframework.expression.spel.ast.Ternary.getChild:(I)Lorg/springframework/expression/spel/SpelNode;
            invokeinterface org.springframework.expression.spel.SpelNode.toStringAST:()Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/expression/spel/ast/Ternary;

  private void computeExitTypeDescriptor();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.springframework.expression.spel.ast.Ternary this
         0: .line 69
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
            ifnonnull 8
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_1
            aaload
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            ifnull 8
         1: .line 70
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_2
            aaload
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            ifnull 8
         2: .line 71
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_1
            aaload
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            astore 1 /* leftDescriptor */
        start local 1 // java.lang.String leftDescriptor
         3: .line 72
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_2
            aaload
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            astore 2 /* rightDescriptor */
        start local 2 // java.lang.String rightDescriptor
         4: .line 73
            aload 1 /* leftDescriptor */
            aload 2 /* rightDescriptor */
            invokestatic org.springframework.util.ObjectUtils.nullSafeEquals:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         5: .line 74
            aload 0 /* this */
            aload 1 /* leftDescriptor */
            putfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
         6: .line 75
            goto 8
         7: .line 78
      StackMap locals: java.lang.String java.lang.String
      StackMap stack:
            aload 0 /* this */
            ldc "Ljava/lang/Object"
            putfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
        end local 2 // java.lang.String rightDescriptor
        end local 1 // java.lang.String leftDescriptor
         8: .line 81
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    9     0             this  Lorg/springframework/expression/spel/ast/Ternary;
            3    8     1   leftDescriptor  Ljava/lang/String;
            4    8     2  rightDescriptor  Ljava/lang/String;

  public boolean isCompilable();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.springframework.expression.spel.ast.Ternary this
         0: .line 85
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_0
            aaload
            astore 1 /* condition */
        start local 1 // org.springframework.expression.spel.ast.SpelNodeImpl condition
         1: .line 86
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_1
            aaload
            astore 2 /* left */
        start local 2 // org.springframework.expression.spel.ast.SpelNodeImpl left
         2: .line 87
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_2
            aaload
            astore 3 /* right */
        start local 3 // org.springframework.expression.spel.ast.SpelNodeImpl right
         3: .line 88
            aload 1 /* condition */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.isCompilable:()Z
            ifeq 7
            aload 2 /* left */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.isCompilable:()Z
            ifeq 7
            aload 3 /* right */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.isCompilable:()Z
            ifeq 7
         4: .line 89
            aload 1 /* condition */
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            invokestatic org.springframework.expression.spel.CodeFlow.isBooleanCompatible:(Ljava/lang/String;)Z
            ifeq 7
         5: .line 90
            aload 2 /* left */
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            ifnull 7
            aload 3 /* right */
            getfield org.springframework.expression.spel.ast.SpelNodeImpl.exitTypeDescriptor:Ljava/lang/String;
            ifnull 7
         6: .line 88
            iconst_1
            ireturn
      StackMap locals: org.springframework.expression.spel.ast.SpelNodeImpl org.springframework.expression.spel.ast.SpelNodeImpl org.springframework.expression.spel.ast.SpelNodeImpl
      StackMap stack:
         7: iconst_0
            ireturn
        end local 3 // org.springframework.expression.spel.ast.SpelNodeImpl right
        end local 2 // org.springframework.expression.spel.ast.SpelNodeImpl left
        end local 1 // org.springframework.expression.spel.ast.SpelNodeImpl condition
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/springframework/expression/spel/ast/Ternary;
            1    8     1  condition  Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            2    8     2       left  Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            3    8     3      right  Lorg/springframework/expression/spel/ast/SpelNodeImpl;

  public void generateCode(org.springframework.asm.MethodVisitor, org.springframework.expression.spel.CodeFlow);
    descriptor: (Lorg/springframework/asm/MethodVisitor;Lorg/springframework/expression/spel/CodeFlow;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.springframework.expression.spel.ast.Ternary this
        start local 1 // org.springframework.asm.MethodVisitor mv
        start local 2 // org.springframework.expression.spel.CodeFlow cf
         0: .line 96
            aload 0 /* this */
            invokevirtual org.springframework.expression.spel.ast.Ternary.computeExitTypeDescriptor:()V
         1: .line 97
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.enterCompilationScope:()V
         2: .line 98
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_0
            aaload
            aload 1 /* mv */
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.generateCode:(Lorg/springframework/asm/MethodVisitor;Lorg/springframework/expression/spel/CodeFlow;)V
         3: .line 99
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.lastDescriptor:()Ljava/lang/String;
            astore 3 /* lastDesc */
        start local 3 // java.lang.String lastDesc
         4: .line 100
            aload 3 /* lastDesc */
            ifnull 5
            iconst_1
            goto 6
      StackMap locals: java.lang.String
      StackMap stack:
         5: iconst_0
      StackMap locals:
      StackMap stack: int
         6: ldc "No last descriptor"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
         7: .line 101
            aload 3 /* lastDesc */
            invokestatic org.springframework.expression.spel.CodeFlow.isPrimitive:(Ljava/lang/String;)Z
            ifne 9
         8: .line 102
            aload 1 /* mv */
            bipush 90
            aload 3 /* lastDesc */
            invokestatic org.springframework.expression.spel.CodeFlow.insertUnboxInsns:(Lorg/springframework/asm/MethodVisitor;CLjava/lang/String;)V
         9: .line 104
      StackMap locals:
      StackMap stack:
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.exitCompilationScope:()V
        10: .line 105
            new org.springframework.asm.Label
            dup
            invokespecial org.springframework.asm.Label.<init>:()V
            astore 4 /* elseTarget */
        start local 4 // org.springframework.asm.Label elseTarget
        11: .line 106
            new org.springframework.asm.Label
            dup
            invokespecial org.springframework.asm.Label.<init>:()V
            astore 5 /* endOfIf */
        start local 5 // org.springframework.asm.Label endOfIf
        12: .line 107
            aload 1 /* mv */
            sipush 153
            aload 4 /* elseTarget */
            invokevirtual org.springframework.asm.MethodVisitor.visitJumpInsn:(ILorg/springframework/asm/Label;)V
        13: .line 108
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.enterCompilationScope:()V
        14: .line 109
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_1
            aaload
            aload 1 /* mv */
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.generateCode:(Lorg/springframework/asm/MethodVisitor;Lorg/springframework/expression/spel/CodeFlow;)V
        15: .line 110
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
            invokestatic org.springframework.expression.spel.CodeFlow.isPrimitive:(Ljava/lang/String;)Z
            ifne 21
        16: .line 111
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.lastDescriptor:()Ljava/lang/String;
            astore 3 /* lastDesc */
        17: .line 112
            aload 3 /* lastDesc */
            ifnull 18
            iconst_1
            goto 19
      StackMap locals: org.springframework.asm.Label org.springframework.asm.Label
      StackMap stack:
        18: iconst_0
      StackMap locals:
      StackMap stack: int
        19: ldc "No last descriptor"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
        20: .line 113
            aload 1 /* mv */
            aload 3 /* lastDesc */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic org.springframework.expression.spel.CodeFlow.insertBoxIfNecessary:(Lorg/springframework/asm/MethodVisitor;C)V
        21: .line 115
      StackMap locals:
      StackMap stack:
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.exitCompilationScope:()V
        22: .line 116
            aload 1 /* mv */
            sipush 167
            aload 5 /* endOfIf */
            invokevirtual org.springframework.asm.MethodVisitor.visitJumpInsn:(ILorg/springframework/asm/Label;)V
        23: .line 117
            aload 1 /* mv */
            aload 4 /* elseTarget */
            invokevirtual org.springframework.asm.MethodVisitor.visitLabel:(Lorg/springframework/asm/Label;)V
        24: .line 118
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.enterCompilationScope:()V
        25: .line 119
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.children:[Lorg/springframework/expression/spel/ast/SpelNodeImpl;
            iconst_2
            aaload
            aload 1 /* mv */
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.ast.SpelNodeImpl.generateCode:(Lorg/springframework/asm/MethodVisitor;Lorg/springframework/expression/spel/CodeFlow;)V
        26: .line 120
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
            invokestatic org.springframework.expression.spel.CodeFlow.isPrimitive:(Ljava/lang/String;)Z
            ifne 32
        27: .line 121
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.lastDescriptor:()Ljava/lang/String;
            astore 3 /* lastDesc */
        28: .line 122
            aload 3 /* lastDesc */
            ifnull 29
            iconst_1
            goto 30
      StackMap locals:
      StackMap stack:
        29: iconst_0
      StackMap locals:
      StackMap stack: int
        30: ldc "No last descriptor"
            invokestatic org.springframework.util.Assert.state:(ZLjava/lang/String;)V
        31: .line 123
            aload 1 /* mv */
            aload 3 /* lastDesc */
            iconst_0
            invokevirtual java.lang.String.charAt:(I)C
            invokestatic org.springframework.expression.spel.CodeFlow.insertBoxIfNecessary:(Lorg/springframework/asm/MethodVisitor;C)V
        32: .line 125
      StackMap locals:
      StackMap stack:
            aload 2 /* cf */
            invokevirtual org.springframework.expression.spel.CodeFlow.exitCompilationScope:()V
        33: .line 126
            aload 1 /* mv */
            aload 5 /* endOfIf */
            invokevirtual org.springframework.asm.MethodVisitor.visitLabel:(Lorg/springframework/asm/Label;)V
        34: .line 127
            aload 2 /* cf */
            aload 0 /* this */
            getfield org.springframework.expression.spel.ast.Ternary.exitTypeDescriptor:Ljava/lang/String;
            invokevirtual org.springframework.expression.spel.CodeFlow.pushDescriptor:(Ljava/lang/String;)V
        35: .line 128
            return
        end local 5 // org.springframework.asm.Label endOfIf
        end local 4 // org.springframework.asm.Label elseTarget
        end local 3 // java.lang.String lastDesc
        end local 2 // org.springframework.expression.spel.CodeFlow cf
        end local 1 // org.springframework.asm.MethodVisitor mv
        end local 0 // org.springframework.expression.spel.ast.Ternary this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   36     0        this  Lorg/springframework/expression/spel/ast/Ternary;
            0   36     1          mv  Lorg/springframework/asm/MethodVisitor;
            0   36     2          cf  Lorg/springframework/expression/spel/CodeFlow;
            4   36     3    lastDesc  Ljava/lang/String;
           11   36     4  elseTarget  Lorg/springframework/asm/Label;
           12   36     5     endOfIf  Lorg/springframework/asm/Label;
    MethodParameters:
      Name  Flags
      mv    
      cf    
}
SourceFile: "Ternary.java"