final class io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError implements io.reactivex.CompletableObserver
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError
  super_class: java.lang.Object
{
  private final io.reactivex.CompletableObserver downstream;
    descriptor: Lio/reactivex/CompletableObserver;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  final io.reactivex.internal.operators.completable.CompletableOnErrorComplete this$0;
    descriptor: Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(io.reactivex.internal.operators.completable.CompletableOnErrorComplete, io.reactivex.CompletableObserver);
    descriptor: (Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete;Lio/reactivex/CompletableObserver;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
        start local 2 // io.reactivex.CompletableObserver observer
         0: .line 42
            aload 0 /* this */
            aload 1
            putfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.this$0:Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete;
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 2 /* observer */
            putfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
         2: .line 44
            return
        end local 2 // io.reactivex.CompletableObserver observer
        end local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete$OnError;
            0    3     2  observer  Lio/reactivex/CompletableObserver;
    MethodParameters:
          Name  Flags
      this$0    final
      observer  

  public void onComplete();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
         0: .line 48
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
            invokeinterface io.reactivex.CompletableObserver.onComplete:()V
         1: .line 49
            return
        end local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete$OnError;

  public void onError(java.lang.Throwable);
    descriptor: (Ljava/lang/Throwable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=2
        start local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
        start local 1 // java.lang.Throwable e
         0: .line 56
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.this$0:Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete;
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete.predicate:Lio/reactivex/functions/Predicate;
            aload 1 /* e */
            invokeinterface io.reactivex.functions.Predicate.test:(Ljava/lang/Object;)Z
            istore 2 /* b */
        start local 2 // boolean b
         1: .line 57
            goto 6
        end local 2 // boolean b
      StackMap locals:
      StackMap stack: java.lang.Throwable
         2: astore 3 /* ex */
        start local 3 // java.lang.Throwable ex
         3: .line 58
            aload 3 /* ex */
            invokestatic io.reactivex.exceptions.Exceptions.throwIfFatal:(Ljava/lang/Throwable;)V
         4: .line 59
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
            new io.reactivex.exceptions.CompositeException
            dup
            iconst_2
            anewarray java.lang.Throwable
            dup
            iconst_0
            aload 1 /* e */
            aastore
            dup
            iconst_1
            aload 3 /* ex */
            aastore
            invokespecial io.reactivex.exceptions.CompositeException.<init>:([Ljava/lang/Throwable;)V
            invokeinterface io.reactivex.CompletableObserver.onError:(Ljava/lang/Throwable;)V
         5: .line 60
            return
        end local 3 // java.lang.Throwable ex
        start local 2 // boolean b
         6: .line 63
      StackMap locals: int
      StackMap stack:
            iload 2 /* b */
            ifeq 9
         7: .line 64
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
            invokeinterface io.reactivex.CompletableObserver.onComplete:()V
         8: .line 65
            goto 10
         9: .line 66
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
            aload 1 /* e */
            invokeinterface io.reactivex.CompletableObserver.onError:(Ljava/lang/Throwable;)V
        10: .line 68
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean b
        end local 1 // java.lang.Throwable e
        end local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete$OnError;
            0   11     1     e  Ljava/lang/Throwable;
            1    2     2     b  Z
            6   11     2     b  Z
            3    6     3    ex  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           0     1       2  Class java.lang.Throwable
    MethodParameters:
      Name  Flags
      e     

  public void onSubscribe(io.reactivex.disposables.Disposable);
    descriptor: (Lio/reactivex/disposables/Disposable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
        start local 1 // io.reactivex.disposables.Disposable d
         0: .line 72
            aload 0 /* this */
            getfield io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError.downstream:Lio/reactivex/CompletableObserver;
            aload 1 /* d */
            invokeinterface io.reactivex.CompletableObserver.onSubscribe:(Lio/reactivex/disposables/Disposable;)V
         1: .line 73
            return
        end local 1 // io.reactivex.disposables.Disposable d
        end local 0 // io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/reactivex/internal/operators/completable/CompletableOnErrorComplete$OnError;
            0    2     1     d  Lio/reactivex/disposables/Disposable;
    MethodParameters:
      Name  Flags
      d     
}
SourceFile: "CompletableOnErrorComplete.java"
NestHost: io.reactivex.internal.operators.completable.CompletableOnErrorComplete
InnerClasses:
  final OnError = io.reactivex.internal.operators.completable.CompletableOnErrorComplete$OnError of io.reactivex.internal.operators.completable.CompletableOnErrorComplete