class com.google.common.base.Suppliers$SupplierComposition<F, T> implements com.google.common.base.Supplier<T>, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.base.Suppliers$SupplierComposition
  super_class: java.lang.Object
{
  final com.google.common.base.Function<? super F, T> function;
    descriptor: Lcom/google/common/base/Function;
    flags: (0x0010) ACC_FINAL
    Signature: Lcom/google/common/base/Function<-TF;TT;>;

  final com.google.common.base.Supplier<F> supplier;
    descriptor: Lcom/google/common/base/Supplier;
    flags: (0x0010) ACC_FINAL
    Signature: Lcom/google/common/base/Supplier<TF;>;

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  void <init>(com.google.common.base.Function<? super F, T>, com.google.common.base.Supplier<F>);
    descriptor: (Lcom/google/common/base/Function;Lcom/google/common/base/Supplier;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.base.Suppliers$SupplierComposition this
        start local 1 // com.google.common.base.Function function
        start local 2 // com.google.common.base.Supplier supplier
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 54
            aload 0 /* this */
            aload 1 /* function */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.base.Function
            putfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
         2: .line 55
            aload 0 /* this */
            aload 2 /* supplier */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast com.google.common.base.Supplier
            putfield com.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
         3: .line 56
            return
        end local 2 // com.google.common.base.Supplier supplier
        end local 1 // com.google.common.base.Function function
        end local 0 // com.google.common.base.Suppliers$SupplierComposition this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/base/Suppliers$SupplierComposition<TF;TT;>;
            0    4     1  function  Lcom/google/common/base/Function<-TF;TT;>;
            0    4     2  supplier  Lcom/google/common/base/Supplier<TF;>;
    Signature: (Lcom/google/common/base/Function<-TF;TT;>;Lcom/google/common/base/Supplier<TF;>;)V
    MethodParameters:
          Name  Flags
      function  
      supplier  

  public T get();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.base.Suppliers$SupplierComposition this
         0: .line 60
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
            invokeinterface com.google.common.base.Supplier.get:()Ljava/lang/Object;
            invokeinterface com.google.common.base.Function.apply:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.base.Suppliers$SupplierComposition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/base/Suppliers$SupplierComposition<TF;TT;>;
    Signature: ()TT;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.google.common.base.Suppliers$SupplierComposition this
        start local 1 // java.lang.Object obj
         0: .line 65
            aload 1 /* obj */
            instanceof com.google.common.base.Suppliers$SupplierComposition
            ifeq 4
         1: .line 66
            aload 1 /* obj */
            checkcast com.google.common.base.Suppliers$SupplierComposition
            astore 2 /* that */
        start local 2 // com.google.common.base.Suppliers$SupplierComposition that
         2: .line 67
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
            aload 2 /* that */
            getfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
            invokeinterface com.google.common.base.Function.equals:(Ljava/lang/Object;)Z
            ifeq 3
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
            aload 2 /* that */
            getfield com.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 3
            iconst_1
            ireturn
      StackMap locals: com.google.common.base.Suppliers$SupplierComposition
      StackMap stack:
         3: iconst_0
            ireturn
        end local 2 // com.google.common.base.Suppliers$SupplierComposition that
         4: .line 69
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.google.common.base.Suppliers$SupplierComposition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/google/common/base/Suppliers$SupplierComposition<TF;TT;>;
            0    5     1   obj  Ljava/lang/Object;
            2    4     2  that  Lcom/google/common/base/Suppliers$SupplierComposition<**>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.base.Suppliers$SupplierComposition this
         0: .line 74
            iconst_2
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
            aastore
            invokestatic com.google.common.base.Objects.hashCode:([Ljava/lang/Object;)I
            ireturn
        end local 0 // com.google.common.base.Suppliers$SupplierComposition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/base/Suppliers$SupplierComposition<TF;TT;>;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.base.Suppliers$SupplierComposition this
         0: .line 79
            new java.lang.StringBuilder
            dup
            ldc "Suppliers.compose("
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.google.common.base.Suppliers$SupplierComposition.function:Lcom/google/common/base/Function;
            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.google.common.base.Suppliers$SupplierComposition.supplier:Lcom/google/common/base/Supplier;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.base.Suppliers$SupplierComposition this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/base/Suppliers$SupplierComposition<TF;TT;>;
}
Signature: <F:Ljava/lang/Object;T:Ljava/lang/Object;>Ljava/lang/Object;Lcom/google/common/base/Supplier<TT;>;Ljava/io/Serializable;
SourceFile: "Suppliers.java"
NestHost: com.google.common.base.Suppliers
InnerClasses:
  private SupplierComposition = com.google.common.base.Suppliers$SupplierComposition of com.google.common.base.Suppliers