public class org.hamcrest.core.CombinableMatcher<T> extends org.hamcrest.TypeSafeDiagnosingMatcher<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hamcrest.core.CombinableMatcher
  super_class: org.hamcrest.TypeSafeDiagnosingMatcher
{
  private final org.hamcrest.Matcher<? super T> matcher;
    descriptor: Lorg/hamcrest/Matcher;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/hamcrest/Matcher<-TT;>;

  public void <init>(org.hamcrest.Matcher<? super T>);
    descriptor: (Lorg/hamcrest/Matcher;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // org.hamcrest.Matcher matcher
         0: .line 10
            aload 0 /* this */
            invokespecial org.hamcrest.TypeSafeDiagnosingMatcher.<init>:()V
         1: .line 11
            aload 0 /* this */
            aload 1 /* matcher */
            putfield org.hamcrest.core.CombinableMatcher.matcher:Lorg/hamcrest/Matcher;
         2: .line 12
            return
        end local 1 // org.hamcrest.Matcher matcher
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    3     1  matcher  Lorg/hamcrest/Matcher<-TT;>;
    Signature: (Lorg/hamcrest/Matcher<-TT;>;)V
    MethodParameters:
         Name  Flags
      matcher  

  protected boolean matchesSafely(T, org.hamcrest.Description);
    descriptor: (Ljava/lang/Object;Lorg/hamcrest/Description;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // java.lang.Object item
        start local 2 // org.hamcrest.Description mismatch
         0: .line 16
            aload 0 /* this */
            getfield org.hamcrest.core.CombinableMatcher.matcher:Lorg/hamcrest/Matcher;
            aload 1 /* item */
            invokeinterface org.hamcrest.Matcher.matches:(Ljava/lang/Object;)Z
            ifne 3
         1: .line 17
            aload 0 /* this */
            getfield org.hamcrest.core.CombinableMatcher.matcher:Lorg/hamcrest/Matcher;
            aload 1 /* item */
            aload 2 /* mismatch */
            invokeinterface org.hamcrest.Matcher.describeMismatch:(Ljava/lang/Object;Lorg/hamcrest/Description;)V
         2: .line 18
            iconst_0
            ireturn
         3: .line 20
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 2 // org.hamcrest.Description mismatch
        end local 1 // java.lang.Object item
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    4     1      item  TT;
            0    4     2  mismatch  Lorg/hamcrest/Description;
    Signature: (TT;Lorg/hamcrest/Description;)Z
    MethodParameters:
          Name  Flags
      item      
      mismatch  

  public void describeTo(org.hamcrest.Description);
    descriptor: (Lorg/hamcrest/Description;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // org.hamcrest.Description description
         0: .line 25
            aload 1 /* description */
            aload 0 /* this */
            getfield org.hamcrest.core.CombinableMatcher.matcher:Lorg/hamcrest/Matcher;
            invokeinterface org.hamcrest.Description.appendDescriptionOf:(Lorg/hamcrest/SelfDescribing;)Lorg/hamcrest/Description;
            pop
         1: .line 26
            return
        end local 1 // org.hamcrest.Description description
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    2     1  description  Lorg/hamcrest/Description;
    MethodParameters:
             Name  Flags
      description  

  public org.hamcrest.core.CombinableMatcher<T> and(org.hamcrest.Matcher<? super T>);
    descriptor: (Lorg/hamcrest/Matcher;)Lorg/hamcrest/core/CombinableMatcher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // org.hamcrest.Matcher other
         0: .line 29
            new org.hamcrest.core.CombinableMatcher
            dup
            new org.hamcrest.core.AllOf
            dup
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual org.hamcrest.core.CombinableMatcher.templatedListWith:(Lorg/hamcrest/Matcher;)Ljava/util/ArrayList;
            invokespecial org.hamcrest.core.AllOf.<init>:(Ljava/lang/Iterable;)V
            invokespecial org.hamcrest.core.CombinableMatcher.<init>:(Lorg/hamcrest/Matcher;)V
            areturn
        end local 1 // org.hamcrest.Matcher other
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    1     1  other  Lorg/hamcrest/Matcher<-TT;>;
    Signature: (Lorg/hamcrest/Matcher<-TT;>;)Lorg/hamcrest/core/CombinableMatcher<TT;>;
    MethodParameters:
       Name  Flags
      other  

  public org.hamcrest.core.CombinableMatcher<T> or(org.hamcrest.Matcher<? super T>);
    descriptor: (Lorg/hamcrest/Matcher;)Lorg/hamcrest/core/CombinableMatcher;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // org.hamcrest.Matcher other
         0: .line 33
            new org.hamcrest.core.CombinableMatcher
            dup
            new org.hamcrest.core.AnyOf
            dup
            aload 0 /* this */
            aload 1 /* other */
            invokevirtual org.hamcrest.core.CombinableMatcher.templatedListWith:(Lorg/hamcrest/Matcher;)Ljava/util/ArrayList;
            invokespecial org.hamcrest.core.AnyOf.<init>:(Ljava/lang/Iterable;)V
            invokespecial org.hamcrest.core.CombinableMatcher.<init>:(Lorg/hamcrest/Matcher;)V
            areturn
        end local 1 // org.hamcrest.Matcher other
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    1     1  other  Lorg/hamcrest/Matcher<-TT;>;
    Signature: (Lorg/hamcrest/Matcher<-TT;>;)Lorg/hamcrest/core/CombinableMatcher<TT;>;
    MethodParameters:
       Name  Flags
      other  

  private java.util.ArrayList<org.hamcrest.Matcher<? super T>> templatedListWith(org.hamcrest.Matcher<? super T>);
    descriptor: (Lorg/hamcrest/Matcher;)Ljava/util/ArrayList;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hamcrest.core.CombinableMatcher this
        start local 1 // org.hamcrest.Matcher other
         0: .line 37
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* matchers */
        start local 2 // java.util.ArrayList matchers
         1: .line 38
            aload 2 /* matchers */
            aload 0 /* this */
            getfield org.hamcrest.core.CombinableMatcher.matcher:Lorg/hamcrest/Matcher;
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         2: .line 39
            aload 2 /* matchers */
            aload 1 /* other */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         3: .line 40
            aload 2 /* matchers */
            areturn
        end local 2 // java.util.ArrayList matchers
        end local 1 // org.hamcrest.Matcher other
        end local 0 // org.hamcrest.core.CombinableMatcher this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/hamcrest/core/CombinableMatcher<TT;>;
            0    4     1     other  Lorg/hamcrest/Matcher<-TT;>;
            1    4     2  matchers  Ljava/util/ArrayList<Lorg/hamcrest/Matcher<-TT;>;>;
    Signature: (Lorg/hamcrest/Matcher<-TT;>;)Ljava/util/ArrayList<Lorg/hamcrest/Matcher<-TT;>;>;
    MethodParameters:
       Name  Flags
      other  

  public static <LHS> org.hamcrest.core.CombinableMatcher$CombinableBothMatcher<LHS> both(org.hamcrest.Matcher<? super LHS>);
    descriptor: (Lorg/hamcrest/Matcher;)Lorg/hamcrest/core/CombinableMatcher$CombinableBothMatcher;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hamcrest.Matcher matcher
         0: .line 51
            new org.hamcrest.core.CombinableMatcher$CombinableBothMatcher
            dup
            aload 0 /* matcher */
            invokespecial org.hamcrest.core.CombinableMatcher$CombinableBothMatcher.<init>:(Lorg/hamcrest/Matcher;)V
            areturn
        end local 0 // org.hamcrest.Matcher matcher
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  matcher  Lorg/hamcrest/Matcher<-TLHS;>;
    Signature: <LHS:Ljava/lang/Object;>(Lorg/hamcrest/Matcher<-TLHS;>;)Lorg/hamcrest/core/CombinableMatcher$CombinableBothMatcher<TLHS;>;
    RuntimeVisibleAnnotations: 
      org.hamcrest.Factory()
    MethodParameters:
         Name  Flags
      matcher  

  public static <LHS> org.hamcrest.core.CombinableMatcher$CombinableEitherMatcher<LHS> either(org.hamcrest.Matcher<? super LHS>);
    descriptor: (Lorg/hamcrest/Matcher;)Lorg/hamcrest/core/CombinableMatcher$CombinableEitherMatcher;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.hamcrest.Matcher matcher
         0: .line 72
            new org.hamcrest.core.CombinableMatcher$CombinableEitherMatcher
            dup
            aload 0 /* matcher */
            invokespecial org.hamcrest.core.CombinableMatcher$CombinableEitherMatcher.<init>:(Lorg/hamcrest/Matcher;)V
            areturn
        end local 0 // org.hamcrest.Matcher matcher
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  matcher  Lorg/hamcrest/Matcher<-TLHS;>;
    Signature: <LHS:Ljava/lang/Object;>(Lorg/hamcrest/Matcher<-TLHS;>;)Lorg/hamcrest/core/CombinableMatcher$CombinableEitherMatcher<TLHS;>;
    RuntimeVisibleAnnotations: 
      org.hamcrest.Factory()
    MethodParameters:
         Name  Flags
      matcher  
}
Signature: <T:Ljava/lang/Object;>Lorg/hamcrest/TypeSafeDiagnosingMatcher<TT;>;
SourceFile: "CombinableMatcher.java"
NestMembers:
  org.hamcrest.core.CombinableMatcher$CombinableBothMatcher  org.hamcrest.core.CombinableMatcher$CombinableEitherMatcher
InnerClasses:
  public final CombinableBothMatcher = org.hamcrest.core.CombinableMatcher$CombinableBothMatcher of org.hamcrest.core.CombinableMatcher
  public final CombinableEitherMatcher = org.hamcrest.core.CombinableMatcher$CombinableEitherMatcher of org.hamcrest.core.CombinableMatcher