public abstract class org.junit.runners.ParentRunner<T> extends org.junit.runner.Runner implements org.junit.runner.manipulation.Filterable, org.junit.runner.manipulation.Sortable
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.junit.runners.ParentRunner
  super_class: org.junit.runner.Runner
{
  private static final java.util.List<org.junit.validator.TestClassValidator> VALIDATORS;
    descriptor: Ljava/util/List;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    Signature: Ljava/util/List<Lorg/junit/validator/TestClassValidator;>;

  private final java.lang.Object childrenLock;
    descriptor: Ljava/lang/Object;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.junit.runners.model.TestClass testClass;
    descriptor: Lorg/junit/runners/model/TestClass;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private volatile java.util.Collection<T> filteredChildren;
    descriptor: Ljava/util/Collection;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE
    Signature: Ljava/util/Collection<TT;>;

  private volatile org.junit.runners.model.RunnerScheduler scheduler;
    descriptor: Lorg/junit/runners/model/RunnerScheduler;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=5, locals=0, args_size=0
         0: .line 60
            iconst_2
            anewarray org.junit.validator.TestClassValidator
            dup
            iconst_0
         1: .line 61
            new org.junit.validator.AnnotationsValidator
            dup
            invokespecial org.junit.validator.AnnotationsValidator.<init>:()V
            aastore
            dup
            iconst_1
            new org.junit.validator.PublicClassValidator
            dup
            invokespecial org.junit.validator.PublicClassValidator.<init>:()V
            aastore
         2: .line 60
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            putstatic org.junit.runners.ParentRunner.VALIDATORS:Ljava/util/List;
         3: .line 61
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.lang.Class testClass
         0: .line 82
            aload 0 /* this */
            invokespecial org.junit.runner.Runner.<init>:()V
         1: .line 63
            aload 0 /* this */
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putfield org.junit.runners.ParentRunner.childrenLock:Ljava/lang/Object;
         2: .line 67
            aload 0 /* this */
            aconst_null
            putfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
         3: .line 69
            aload 0 /* this */
            new org.junit.runners.ParentRunner$1
            dup
            aload 0 /* this */
            invokespecial org.junit.runners.ParentRunner$1.<init>:(Lorg/junit/runners/ParentRunner;)V
            putfield org.junit.runners.ParentRunner.scheduler:Lorg/junit/runners/model/RunnerScheduler;
         4: .line 83
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* testClass */
            invokevirtual org.junit.runners.ParentRunner.createTestClass:(Ljava/lang/Class;)Lorg/junit/runners/model/TestClass;
            putfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
         5: .line 84
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.validate:()V
         6: .line 85
            return
        end local 1 // java.lang.Class testClass
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    7     1  testClass  Ljava/lang/Class<*>;
    Exceptions:
      throws org.junit.runners.model.InitializationError
    Signature: (Ljava/lang/Class<*>;)V
    MethodParameters:
           Name  Flags
      testClass  

  protected org.junit.runners.model.TestClass createTestClass(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Lorg/junit/runners/model/TestClass;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.lang.Class testClass
         0: .line 88
            new org.junit.runners.model.TestClass
            dup
            aload 1 /* testClass */
            invokespecial org.junit.runners.model.TestClass.<init>:(Ljava/lang/Class;)V
            areturn
        end local 1 // java.lang.Class testClass
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    1     1  testClass  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)Lorg/junit/runners/model/TestClass;
    MethodParameters:
           Name  Flags
      testClass  

  protected abstract java.util.List<T> getChildren();
    descriptor: ()Ljava/util/List;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: ()Ljava/util/List<TT;>;

  protected abstract org.junit.runner.Description describeChild(T);
    descriptor: (Ljava/lang/Object;)Lorg/junit/runner/Description;
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (TT;)Lorg/junit/runner/Description;
    MethodParameters:
       Name  Flags
      child  

  protected abstract void runChild(T, org.junit.runner.notification.RunNotifier);
    descriptor: (Ljava/lang/Object;Lorg/junit/runner/notification/RunNotifier;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    Signature: (TT;Lorg/junit/runner/notification/RunNotifier;)V
    MethodParameters:
          Name  Flags
      child     
      notifier  

  protected void collectInitializationErrors(java.util.List<java.lang.Throwable>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.util.List errors
         0: .line 125
            aload 0 /* this */
            ldc Lorg/junit/BeforeClass;
            iconst_1
            aload 1 /* errors */
            invokevirtual org.junit.runners.ParentRunner.validatePublicVoidNoArgMethods:(Ljava/lang/Class;ZLjava/util/List;)V
         1: .line 126
            aload 0 /* this */
            ldc Lorg/junit/AfterClass;
            iconst_1
            aload 1 /* errors */
            invokevirtual org.junit.runners.ParentRunner.validatePublicVoidNoArgMethods:(Ljava/lang/Class;ZLjava/util/List;)V
         2: .line 127
            aload 0 /* this */
            aload 1 /* errors */
            invokevirtual org.junit.runners.ParentRunner.validateClassRules:(Ljava/util/List;)V
         3: .line 128
            aload 0 /* this */
            aload 1 /* errors */
            invokevirtual org.junit.runners.ParentRunner.applyValidators:(Ljava/util/List;)V
         4: .line 129
            return
        end local 1 // java.util.List errors
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            0    5     1  errors  Ljava/util/List<Ljava/lang/Throwable;>;
    Signature: (Ljava/util/List<Ljava/lang/Throwable;>;)V
    MethodParameters:
        Name  Flags
      errors  

  private void applyValidators(java.util.List<java.lang.Throwable>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.util.List errors
         0: .line 132
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getTestClass:()Lorg/junit/runners/model/TestClass;
            invokevirtual org.junit.runners.model.TestClass.getJavaClass:()Ljava/lang/Class;
            ifnull 5
         1: .line 133
            getstatic org.junit.runners.ParentRunner.VALIDATORS:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.junit.runners.ParentRunner java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.junit.validator.TestClassValidator
            astore 2 /* each */
        start local 2 // org.junit.validator.TestClassValidator each
         3: .line 134
            aload 1 /* errors */
            aload 2 /* each */
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getTestClass:()Lorg/junit/runners/model/TestClass;
            invokeinterface org.junit.validator.TestClassValidator.validateTestClass:(Lorg/junit/runners/model/TestClass;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
        end local 2 // org.junit.validator.TestClassValidator each
         4: .line 133
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 137
      StackMap locals: org.junit.runners.ParentRunner java.util.List
      StackMap stack:
            return
        end local 1 // java.util.List errors
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    6     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            0    6     1  errors  Ljava/util/List<Ljava/lang/Throwable;>;
            3    4     2    each  Lorg/junit/validator/TestClassValidator;
    Signature: (Ljava/util/List<Ljava/lang/Throwable;>;)V
    MethodParameters:
        Name  Flags
      errors  

  protected void validatePublicVoidNoArgMethods(java.lang.Class<? extends java.lang.annotation.Annotation>, boolean, java.util.List<java.lang.Throwable>);
    descriptor: (Ljava/lang/Class;ZLjava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=7, args_size=4
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.lang.Class annotation
        start local 2 // boolean isStatic
        start local 3 // java.util.List errors
         0: .line 152
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getTestClass:()Lorg/junit/runners/model/TestClass;
            aload 1 /* annotation */
            invokevirtual org.junit.runners.model.TestClass.getAnnotatedMethods:(Ljava/lang/Class;)Ljava/util/List;
            astore 4 /* methods */
        start local 4 // java.util.List methods
         1: .line 154
            aload 4 /* methods */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 6
            goto 4
      StackMap locals: org.junit.runners.ParentRunner java.lang.Class int java.util.List java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.junit.runners.model.FrameworkMethod
            astore 5 /* eachTestMethod */
        start local 5 // org.junit.runners.model.FrameworkMethod eachTestMethod
         3: .line 155
            aload 5 /* eachTestMethod */
            iload 2 /* isStatic */
            aload 3 /* errors */
            invokevirtual org.junit.runners.model.FrameworkMethod.validatePublicVoidNoArg:(ZLjava/util/List;)V
        end local 5 // org.junit.runners.model.FrameworkMethod eachTestMethod
         4: .line 154
      StackMap locals:
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 157
            return
        end local 4 // java.util.List methods
        end local 3 // java.util.List errors
        end local 2 // boolean isStatic
        end local 1 // java.lang.Class annotation
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    6     0            this  Lorg/junit/runners/ParentRunner<TT;>;
            0    6     1      annotation  Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;
            0    6     2        isStatic  Z
            0    6     3          errors  Ljava/util/List<Ljava/lang/Throwable;>;
            1    6     4         methods  Ljava/util/List<Lorg/junit/runners/model/FrameworkMethod;>;
            3    4     5  eachTestMethod  Lorg/junit/runners/model/FrameworkMethod;
    Signature: (Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;ZLjava/util/List<Ljava/lang/Throwable;>;)V
    MethodParameters:
            Name  Flags
      annotation  
      isStatic    
      errors      

  private void validateClassRules(java.util.List<java.lang.Throwable>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.util.List errors
         0: .line 160
            getstatic org.junit.internal.runners.rules.RuleMemberValidator.CLASS_RULE_VALIDATOR:Lorg/junit/internal/runners/rules/RuleMemberValidator;
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getTestClass:()Lorg/junit/runners/model/TestClass;
            aload 1 /* errors */
            invokevirtual org.junit.internal.runners.rules.RuleMemberValidator.validate:(Lorg/junit/runners/model/TestClass;Ljava/util/List;)V
         1: .line 161
            getstatic org.junit.internal.runners.rules.RuleMemberValidator.CLASS_RULE_METHOD_VALIDATOR:Lorg/junit/internal/runners/rules/RuleMemberValidator;
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getTestClass:()Lorg/junit/runners/model/TestClass;
            aload 1 /* errors */
            invokevirtual org.junit.internal.runners.rules.RuleMemberValidator.validate:(Lorg/junit/runners/model/TestClass;Ljava/util/List;)V
         2: .line 162
            return
        end local 1 // java.util.List errors
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            0    3     1  errors  Ljava/util/List<Ljava/lang/Throwable;>;
    Signature: (Ljava/util/List<Ljava/lang/Throwable;>;)V
    MethodParameters:
        Name  Flags
      errors  

  protected org.junit.runners.model.Statement classBlock(org.junit.runner.notification.RunNotifier);
    descriptor: (Lorg/junit/runner/notification/RunNotifier;)Lorg/junit/runners/model/Statement;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.notification.RunNotifier notifier
         0: .line 190
            aload 0 /* this */
            aload 1 /* notifier */
            invokevirtual org.junit.runners.ParentRunner.childrenInvoker:(Lorg/junit/runner/notification/RunNotifier;)Lorg/junit/runners/model/Statement;
            astore 2 /* statement */
        start local 2 // org.junit.runners.model.Statement statement
         1: .line 191
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.areAllChildrenIgnored:()Z
            ifne 5
         2: .line 192
            aload 0 /* this */
            aload 2 /* statement */
            invokevirtual org.junit.runners.ParentRunner.withBeforeClasses:(Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
            astore 2 /* statement */
         3: .line 193
            aload 0 /* this */
            aload 2 /* statement */
            invokevirtual org.junit.runners.ParentRunner.withAfterClasses:(Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
            astore 2 /* statement */
         4: .line 194
            aload 0 /* this */
            aload 2 /* statement */
            invokevirtual org.junit.runners.ParentRunner.withClassRules:(Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
            astore 2 /* statement */
         5: .line 196
      StackMap locals: org.junit.runners.model.Statement
      StackMap stack:
            aload 2 /* statement */
            areturn
        end local 2 // org.junit.runners.model.Statement statement
        end local 1 // org.junit.runner.notification.RunNotifier notifier
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    6     1   notifier  Lorg/junit/runner/notification/RunNotifier;
            1    6     2  statement  Lorg/junit/runners/model/Statement;
    MethodParameters:
          Name  Flags
      notifier  final

  private boolean areAllChildrenIgnored();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 200
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2
            goto 4
      StackMap locals: org.junit.runners.ParentRunner top java.util.Iterator
      StackMap stack:
         1: aload 2
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 1 /* child */
        start local 1 // java.lang.Object child
         2: .line 201
            aload 0 /* this */
            aload 1 /* child */
            invokevirtual org.junit.runners.ParentRunner.isIgnored:(Ljava/lang/Object;)Z
            ifne 4
         3: .line 202
            iconst_0
            ireturn
        end local 1 // java.lang.Object child
         4: .line 200
      StackMap locals:
      StackMap stack:
            aload 2
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 1
         5: .line 205
            iconst_1
            ireturn
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/junit/runners/ParentRunner<TT;>;
            2    4     1  child  TT;

  protected org.junit.runners.model.Statement withBeforeClasses(org.junit.runners.model.Statement);
    descriptor: (Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runners.model.Statement statement
         0: .line 214
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
         1: .line 215
            ldc Lorg/junit/BeforeClass;
            invokevirtual org.junit.runners.model.TestClass.getAnnotatedMethods:(Ljava/lang/Class;)Ljava/util/List;
         2: .line 214
            astore 2 /* befores */
        start local 2 // java.util.List befores
         3: .line 216
            aload 2 /* befores */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 4
            aload 1 /* statement */
            goto 5
         4: .line 217
      StackMap locals: java.util.List
      StackMap stack:
            new org.junit.internal.runners.statements.RunBefores
            dup
            aload 1 /* statement */
            aload 2 /* befores */
            aconst_null
            invokespecial org.junit.internal.runners.statements.RunBefores.<init>:(Lorg/junit/runners/model/Statement;Ljava/util/List;Ljava/lang/Object;)V
         5: .line 216
      StackMap locals:
      StackMap stack: org.junit.runners.model.Statement
            areturn
        end local 2 // java.util.List befores
        end local 1 // org.junit.runners.model.Statement statement
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    6     1  statement  Lorg/junit/runners/model/Statement;
            3    6     2    befores  Ljava/util/List<Lorg/junit/runners/model/FrameworkMethod;>;
    MethodParameters:
           Name  Flags
      statement  

  protected org.junit.runners.model.Statement withAfterClasses(org.junit.runners.model.Statement);
    descriptor: (Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runners.model.Statement statement
         0: .line 228
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
         1: .line 229
            ldc Lorg/junit/AfterClass;
            invokevirtual org.junit.runners.model.TestClass.getAnnotatedMethods:(Ljava/lang/Class;)Ljava/util/List;
         2: .line 228
            astore 2 /* afters */
        start local 2 // java.util.List afters
         3: .line 230
            aload 2 /* afters */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 4
            aload 1 /* statement */
            goto 5
         4: .line 231
      StackMap locals: java.util.List
      StackMap stack:
            new org.junit.internal.runners.statements.RunAfters
            dup
            aload 1 /* statement */
            aload 2 /* afters */
            aconst_null
            invokespecial org.junit.internal.runners.statements.RunAfters.<init>:(Lorg/junit/runners/model/Statement;Ljava/util/List;Ljava/lang/Object;)V
         5: .line 230
      StackMap locals:
      StackMap stack: org.junit.runners.model.Statement
            areturn
        end local 2 // java.util.List afters
        end local 1 // org.junit.runners.model.Statement statement
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    6     1  statement  Lorg/junit/runners/model/Statement;
            3    6     2     afters  Ljava/util/List<Lorg/junit/runners/model/FrameworkMethod;>;
    MethodParameters:
           Name  Flags
      statement  

  private org.junit.runners.model.Statement withClassRules(org.junit.runners.model.Statement);
    descriptor: (Lorg/junit/runners/model/Statement;)Lorg/junit/runners/model/Statement;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runners.model.Statement statement
         0: .line 244
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.classRules:()Ljava/util/List;
            astore 2 /* classRules */
        start local 2 // java.util.List classRules
         1: .line 245
            aload 2 /* classRules */
            invokeinterface java.util.List.isEmpty:()Z
            ifeq 2
            aload 1 /* statement */
            goto 3
         2: .line 246
      StackMap locals: java.util.List
      StackMap stack:
            new org.junit.rules.RunRules
            dup
            aload 1 /* statement */
            aload 2 /* classRules */
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getDescription:()Lorg/junit/runner/Description;
            invokespecial org.junit.rules.RunRules.<init>:(Lorg/junit/runners/model/Statement;Ljava/lang/Iterable;Lorg/junit/runner/Description;)V
         3: .line 245
      StackMap locals:
      StackMap stack: org.junit.runners.model.Statement
            areturn
        end local 2 // java.util.List classRules
        end local 1 // org.junit.runners.model.Statement statement
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/junit/runners/ParentRunner<TT;>;
            0    4     1   statement  Lorg/junit/runners/model/Statement;
            1    4     2  classRules  Ljava/util/List<Lorg/junit/rules/TestRule;>;
    MethodParameters:
           Name  Flags
      statement  

  protected java.util.List<org.junit.rules.TestRule> classRules();
    descriptor: ()Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 254
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
            aconst_null
            ldc Lorg/junit/ClassRule;
            ldc Lorg/junit/rules/TestRule;
            invokevirtual org.junit.runners.model.TestClass.getAnnotatedMethodValues:(Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/List;
            astore 1 /* result */
        start local 1 // java.util.List result
         1: .line 255
            aload 1 /* result */
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
            aconst_null
            ldc Lorg/junit/ClassRule;
            ldc Lorg/junit/rules/TestRule;
            invokevirtual org.junit.runners.model.TestClass.getAnnotatedFieldValues:(Ljava/lang/Object;Ljava/lang/Class;Ljava/lang/Class;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 256
            aload 1 /* result */
            areturn
        end local 1 // java.util.List result
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            1    3     1  result  Ljava/util/List<Lorg/junit/rules/TestRule;>;
    Signature: ()Ljava/util/List<Lorg/junit/rules/TestRule;>;

  protected org.junit.runners.model.Statement childrenInvoker(org.junit.runner.notification.RunNotifier);
    descriptor: (Lorg/junit/runner/notification/RunNotifier;)Lorg/junit/runners/model/Statement;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.notification.RunNotifier notifier
         0: .line 265
            new org.junit.runners.ParentRunner$2
            dup
            aload 0 /* this */
            aload 1 /* notifier */
            invokespecial org.junit.runners.ParentRunner$2.<init>:(Lorg/junit/runners/ParentRunner;Lorg/junit/runner/notification/RunNotifier;)V
            areturn
        end local 1 // org.junit.runner.notification.RunNotifier notifier
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/junit/runners/ParentRunner<TT;>;
            0    1     1  notifier  Lorg/junit/runner/notification/RunNotifier;
    MethodParameters:
          Name  Flags
      notifier  final

  protected boolean isIgnored();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // java.lang.Object child
         0: .line 281
            iconst_0
            ireturn
        end local 1 // java.lang.Object child
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/junit/runners/ParentRunner<TT;>;
            0    1     1  child  TT;
    Signature: (TT;)Z
    MethodParameters:
       Name  Flags
      child  

  private void runChildren(org.junit.runner.notification.RunNotifier);
    descriptor: (Lorg/junit/runner/notification/RunNotifier;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.notification.RunNotifier notifier
         0: .line 285
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.scheduler:Lorg/junit/runners/model/RunnerScheduler;
            astore 2 /* currentScheduler */
        start local 2 // org.junit.runners.model.RunnerScheduler currentScheduler
         1: .line 287
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.notification.RunNotifier org.junit.runners.model.RunnerScheduler top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* each */
        start local 3 // java.lang.Object each
         3: .line 288
            aload 2 /* currentScheduler */
            new org.junit.runners.ParentRunner$3
            dup
            aload 0 /* this */
            aload 3 /* each */
            aload 1 /* notifier */
            invokespecial org.junit.runners.ParentRunner$3.<init>:(Lorg/junit/runners/ParentRunner;Ljava/lang/Object;Lorg/junit/runner/notification/RunNotifier;)V
            invokeinterface org.junit.runners.model.RunnerScheduler.schedule:(Ljava/lang/Runnable;)V
        end local 3 // java.lang.Object each
         4: .line 287
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 294
            goto 9
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.notification.RunNotifier org.junit.runners.model.RunnerScheduler
      StackMap stack: java.lang.Throwable
         6: astore 5
         7: .line 295
            aload 2 /* currentScheduler */
            invokeinterface org.junit.runners.model.RunnerScheduler.finished:()V
         8: .line 296
            aload 5
            athrow
         9: .line 295
      StackMap locals:
      StackMap stack:
            aload 2 /* currentScheduler */
            invokeinterface org.junit.runners.model.RunnerScheduler.finished:()V
        10: .line 297
            return
        end local 2 // org.junit.runners.model.RunnerScheduler currentScheduler
        end local 1 // org.junit.runner.notification.RunNotifier notifier
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   11     0              this  Lorg/junit/runners/ParentRunner<TT;>;
            0   11     1          notifier  Lorg/junit/runner/notification/RunNotifier;
            1   11     2  currentScheduler  Lorg/junit/runners/model/RunnerScheduler;
            3    4     3              each  TT;
      Exception table:
        from    to  target  type
           1     6       6  any
    MethodParameters:
          Name  Flags
      notifier  final

  protected java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 303
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
            invokevirtual org.junit.runners.model.TestClass.getName:()Ljava/lang/String;
            areturn
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/runners/ParentRunner<TT;>;

  public final org.junit.runners.model.TestClass getTestClass();
    descriptor: ()Lorg/junit/runners/model/TestClass;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 314
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
            areturn
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/runners/ParentRunner<TT;>;

  protected final void runLeaf(org.junit.runners.model.Statement, org.junit.runner.Description, org.junit.runner.notification.RunNotifier);
    descriptor: (Lorg/junit/runners/model/Statement;Lorg/junit/runner/Description;Lorg/junit/runner/notification/RunNotifier;)V
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=4, locals=7, args_size=4
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runners.model.Statement statement
        start local 2 // org.junit.runner.Description description
        start local 3 // org.junit.runner.notification.RunNotifier notifier
         0: .line 322
            new org.junit.internal.runners.model.EachTestNotifier
            dup
            aload 3 /* notifier */
            aload 2 /* description */
            invokespecial org.junit.internal.runners.model.EachTestNotifier.<init>:(Lorg/junit/runner/notification/RunNotifier;Lorg/junit/runner/Description;)V
            astore 4 /* eachNotifier */
        start local 4 // org.junit.internal.runners.model.EachTestNotifier eachNotifier
         1: .line 323
            aload 4 /* eachNotifier */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.fireTestStarted:()V
         2: .line 325
            aload 1 /* statement */
            invokevirtual org.junit.runners.model.Statement.evaluate:()V
         3: .line 326
            goto 13
      StackMap locals: org.junit.runners.ParentRunner org.junit.runners.model.Statement org.junit.runner.Description org.junit.runner.notification.RunNotifier org.junit.internal.runners.model.EachTestNotifier
      StackMap stack: org.junit.internal.AssumptionViolatedException
         4: astore 5 /* e */
        start local 5 // org.junit.internal.AssumptionViolatedException e
         5: .line 327
            aload 4 /* eachNotifier */
            aload 5 /* e */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.addFailedAssumption:(Lorg/junit/internal/AssumptionViolatedException;)V
        end local 5 // org.junit.internal.AssumptionViolatedException e
         6: .line 331
            aload 4 /* eachNotifier */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.fireTestFinished:()V
            goto 14
         7: .line 328
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 5 /* e */
        start local 5 // java.lang.Throwable e
         8: .line 329
            aload 4 /* eachNotifier */
            aload 5 /* e */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.addFailure:(Ljava/lang/Throwable;)V
        end local 5 // java.lang.Throwable e
         9: .line 331
            aload 4 /* eachNotifier */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.fireTestFinished:()V
            goto 14
        10: .line 330
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 6
        11: .line 331
            aload 4 /* eachNotifier */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.fireTestFinished:()V
        12: .line 332
            aload 6
            athrow
        13: .line 331
      StackMap locals:
      StackMap stack:
            aload 4 /* eachNotifier */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.fireTestFinished:()V
        14: .line 333
      StackMap locals:
      StackMap stack:
            return
        end local 4 // org.junit.internal.runners.model.EachTestNotifier eachNotifier
        end local 3 // org.junit.runner.notification.RunNotifier notifier
        end local 2 // org.junit.runner.Description description
        end local 1 // org.junit.runners.model.Statement statement
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   15     0          this  Lorg/junit/runners/ParentRunner<TT;>;
            0   15     1     statement  Lorg/junit/runners/model/Statement;
            0   15     2   description  Lorg/junit/runner/Description;
            0   15     3      notifier  Lorg/junit/runner/notification/RunNotifier;
            1   15     4  eachNotifier  Lorg/junit/internal/runners/model/EachTestNotifier;
            5    6     5             e  Lorg/junit/internal/AssumptionViolatedException;
            8    9     5             e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           2     3       4  Class org.junit.internal.AssumptionViolatedException
           2     3       7  Class java.lang.Throwable
           2     6      10  any
           7     9      10  any
    MethodParameters:
             Name  Flags
      statement    
      description  
      notifier     

  protected java.lang.annotation.Annotation[] getRunnerAnnotations();
    descriptor: ()[Ljava/lang/annotation/Annotation;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 340
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.testClass:Lorg/junit/runners/model/TestClass;
            invokevirtual org.junit.runners.model.TestClass.getAnnotations:()[Ljava/lang/annotation/Annotation;
            areturn
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/junit/runners/ParentRunner<TT;>;

  public org.junit.runner.Description getDescription();
    descriptor: ()Lorg/junit/runner/Description;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 349
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getName:()Ljava/lang/String;
         1: .line 350
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getRunnerAnnotations:()[Ljava/lang/annotation/Annotation;
         2: .line 349
            invokestatic org.junit.runner.Description.createSuiteDescription:(Ljava/lang/String;[Ljava/lang/annotation/Annotation;)Lorg/junit/runner/Description;
            astore 1 /* description */
        start local 1 // org.junit.runner.Description description
         3: .line 351
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 3
            goto 6
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.Description top java.util.Iterator
      StackMap stack:
         4: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 2 /* child */
        start local 2 // java.lang.Object child
         5: .line 352
            aload 1 /* description */
            aload 0 /* this */
            aload 2 /* child */
            invokevirtual org.junit.runners.ParentRunner.describeChild:(Ljava/lang/Object;)Lorg/junit/runner/Description;
            invokevirtual org.junit.runner.Description.addChild:(Lorg/junit/runner/Description;)V
        end local 2 // java.lang.Object child
         6: .line 351
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 354
            aload 1 /* description */
            areturn
        end local 1 // org.junit.runner.Description description
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    8     0         this  Lorg/junit/runners/ParentRunner<TT;>;
            3    8     1  description  Lorg/junit/runner/Description;
            5    6     2        child  TT;

  public void run(org.junit.runner.notification.RunNotifier);
    descriptor: (Lorg/junit/runner/notification/RunNotifier;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.notification.RunNotifier notifier
         0: .line 359
            new org.junit.internal.runners.model.EachTestNotifier
            dup
            aload 1 /* notifier */
         1: .line 360
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getDescription:()Lorg/junit/runner/Description;
         2: .line 359
            invokespecial org.junit.internal.runners.model.EachTestNotifier.<init>:(Lorg/junit/runner/notification/RunNotifier;Lorg/junit/runner/Description;)V
            astore 2 /* testNotifier */
        start local 2 // org.junit.internal.runners.model.EachTestNotifier testNotifier
         3: .line 362
            aload 0 /* this */
            aload 1 /* notifier */
            invokevirtual org.junit.runners.ParentRunner.classBlock:(Lorg/junit/runner/notification/RunNotifier;)Lorg/junit/runners/model/Statement;
            astore 3 /* statement */
        start local 3 // org.junit.runners.model.Statement statement
         4: .line 363
            aload 3 /* statement */
            invokevirtual org.junit.runners.model.Statement.evaluate:()V
        end local 3 // org.junit.runners.model.Statement statement
         5: .line 364
            goto 13
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.notification.RunNotifier org.junit.internal.runners.model.EachTestNotifier
      StackMap stack: org.junit.internal.AssumptionViolatedException
         6: astore 3 /* e */
        start local 3 // org.junit.internal.AssumptionViolatedException e
         7: .line 365
            aload 2 /* testNotifier */
            aload 3 /* e */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.addFailedAssumption:(Lorg/junit/internal/AssumptionViolatedException;)V
        end local 3 // org.junit.internal.AssumptionViolatedException e
         8: goto 13
         9: .line 366
      StackMap locals:
      StackMap stack: org.junit.runner.notification.StoppedByUserException
            astore 3 /* e */
        start local 3 // org.junit.runner.notification.StoppedByUserException e
        10: .line 367
            aload 3 /* e */
            athrow
        end local 3 // org.junit.runner.notification.StoppedByUserException e
        11: .line 368
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3 /* e */
        start local 3 // java.lang.Throwable e
        12: .line 369
            aload 2 /* testNotifier */
            aload 3 /* e */
            invokevirtual org.junit.internal.runners.model.EachTestNotifier.addFailure:(Ljava/lang/Throwable;)V
        end local 3 // java.lang.Throwable e
        13: .line 371
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.junit.internal.runners.model.EachTestNotifier testNotifier
        end local 1 // org.junit.runner.notification.RunNotifier notifier
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   14     0          this  Lorg/junit/runners/ParentRunner<TT;>;
            0   14     1      notifier  Lorg/junit/runner/notification/RunNotifier;
            3   14     2  testNotifier  Lorg/junit/internal/runners/model/EachTestNotifier;
            4    5     3     statement  Lorg/junit/runners/model/Statement;
            7    8     3             e  Lorg/junit/internal/AssumptionViolatedException;
           10   11     3             e  Lorg/junit/runner/notification/StoppedByUserException;
           12   13     3             e  Ljava/lang/Throwable;
      Exception table:
        from    to  target  type
           3     5       6  Class org.junit.internal.AssumptionViolatedException
           3     5       9  Class org.junit.runner.notification.StoppedByUserException
           3     5      11  Class java.lang.Throwable
    MethodParameters:
          Name  Flags
      notifier  final

  public void filter(org.junit.runner.manipulation.Filter);
    descriptor: (Lorg/junit/runner/manipulation/Filter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.manipulation.Filter filter
         0: .line 378
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.childrenLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 379
            new java.util.ArrayList
            dup
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 3 /* children */
        start local 3 // java.util.List children
         2: .line 380
            aload 3 /* children */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 4 /* iter */
        start local 4 // java.util.Iterator iter
         3: goto 12
         4: .line 381
      StackMap locals: java.lang.Object java.util.List java.util.Iterator
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            astore 5 /* each */
        start local 5 // java.lang.Object each
         5: .line 382
            aload 0 /* this */
            aload 1 /* filter */
            aload 5 /* each */
            invokevirtual org.junit.runners.ParentRunner.shouldRun:(Lorg/junit/runner/manipulation/Filter;Ljava/lang/Object;)Z
            ifeq 11
         6: .line 384
            aload 1 /* filter */
            aload 5 /* each */
            invokevirtual org.junit.runner.manipulation.Filter.apply:(Ljava/lang/Object;)V
         7: .line 385
            goto 12
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.manipulation.Filter java.lang.Object java.util.List java.util.Iterator java.lang.Object
      StackMap stack: org.junit.runner.manipulation.NoTestsRemainException
         8: pop
         9: .line 386
            aload 4 /* iter */
            invokeinterface java.util.Iterator.remove:()V
        10: .line 388
            goto 12
        11: .line 389
      StackMap locals:
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.remove:()V
        end local 5 // java.lang.Object each
        12: .line 380
      StackMap locals:
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
        end local 4 // java.util.Iterator iter
        13: .line 392
            aload 0 /* this */
            aload 3 /* children */
            invokestatic java.util.Collections.unmodifiableCollection:(Ljava/util/Collection;)Ljava/util/Collection;
            putfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
        14: .line 393
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
            invokeinterface java.util.Collection.isEmpty:()Z
            ifeq 16
        15: .line 394
            new org.junit.runner.manipulation.NoTestsRemainException
            dup
            invokespecial org.junit.runner.manipulation.NoTestsRemainException.<init>:()V
            athrow
        end local 3 // java.util.List children
        16: .line 378
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        17: goto 20
      StackMap locals:
      StackMap stack: java.lang.Throwable
        18: aload 2
            monitorexit
        19: athrow
        20: .line 397
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.junit.runner.manipulation.Filter filter
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lorg/junit/runners/ParentRunner<TT;>;
            0   21     1    filter  Lorg/junit/runner/manipulation/Filter;
            2   16     3  children  Ljava/util/List<TT;>;
            3   13     4      iter  Ljava/util/Iterator<TT;>;
            5   12     5      each  TT;
      Exception table:
        from    to  target  type
           6     7       8  Class org.junit.runner.manipulation.NoTestsRemainException
           1    17      18  any
          18    19      18  any
    Exceptions:
      throws org.junit.runner.manipulation.NoTestsRemainException
    MethodParameters:
        Name  Flags
      filter  

  public void sort(org.junit.runner.manipulation.Sorter);
    descriptor: (Lorg/junit/runner/manipulation/Sorter;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.manipulation.Sorter sorter
         0: .line 400
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.childrenLock:Ljava/lang/Object;
            dup
            astore 2
            monitorenter
         1: .line 401
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 4
            goto 4
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.manipulation.Sorter java.lang.Object top java.util.Iterator
      StackMap stack:
         2: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Object
            astore 3 /* each */
        start local 3 // java.lang.Object each
         3: .line 402
            aload 1 /* sorter */
            aload 3 /* each */
            invokevirtual org.junit.runner.manipulation.Sorter.apply:(Ljava/lang/Object;)V
        end local 3 // java.lang.Object each
         4: .line 401
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 404
            new java.util.ArrayList
            dup
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getFilteredChildren:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            astore 3 /* sortedChildren */
        start local 3 // java.util.List sortedChildren
         6: .line 405
            aload 3 /* sortedChildren */
            aload 0 /* this */
            aload 1 /* sorter */
            invokevirtual org.junit.runners.ParentRunner.comparator:(Lorg/junit/runner/manipulation/Sorter;)Ljava/util/Comparator;
            invokestatic java.util.Collections.sort:(Ljava/util/List;Ljava/util/Comparator;)V
         7: .line 406
            aload 0 /* this */
            aload 3 /* sortedChildren */
            invokestatic java.util.Collections.unmodifiableCollection:(Ljava/util/Collection;)Ljava/util/Collection;
            putfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
        end local 3 // java.util.List sortedChildren
         8: .line 400
            aload 2
            monitorexit
         9: goto 12
      StackMap locals: org.junit.runners.ParentRunner org.junit.runner.manipulation.Sorter java.lang.Object
      StackMap stack: java.lang.Throwable
        10: aload 2
            monitorexit
        11: athrow
        12: .line 408
      StackMap locals:
      StackMap stack:
            return
        end local 1 // org.junit.runner.manipulation.Sorter sorter
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0            this  Lorg/junit/runners/ParentRunner<TT;>;
            0   13     1          sorter  Lorg/junit/runner/manipulation/Sorter;
            3    4     3            each  TT;
            6    8     3  sortedChildren  Ljava/util/List<TT;>;
      Exception table:
        from    to  target  type
           1     9      10  any
          10    11      10  any
    MethodParameters:
        Name  Flags
      sorter  

  private void validate();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 415
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* errors */
        start local 1 // java.util.List errors
         1: .line 416
            aload 0 /* this */
            aload 1 /* errors */
            invokevirtual org.junit.runners.ParentRunner.collectInitializationErrors:(Ljava/util/List;)V
         2: .line 417
            aload 1 /* errors */
            invokeinterface java.util.List.isEmpty:()Z
            ifne 4
         3: .line 418
            new org.junit.runners.model.InitializationError
            dup
            aload 1 /* errors */
            invokespecial org.junit.runners.model.InitializationError.<init>:(Ljava/util/List;)V
            athrow
         4: .line 420
      StackMap locals: java.util.List
      StackMap stack:
            return
        end local 1 // java.util.List errors
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            1    5     1  errors  Ljava/util/List<Ljava/lang/Throwable;>;
    Exceptions:
      throws org.junit.runners.model.InitializationError

  private java.util.Collection<T> getFilteredChildren();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.junit.runners.ParentRunner this
         0: .line 423
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
            ifnonnull 8
         1: .line 424
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.childrenLock:Ljava/lang/Object;
            dup
            astore 1
            monitorenter
         2: .line 425
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
            ifnonnull 4
         3: .line 426
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.junit.runners.ParentRunner.getChildren:()Ljava/util/List;
            invokestatic java.util.Collections.unmodifiableCollection:(Ljava/util/Collection;)Ljava/util/Collection;
            putfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
         4: .line 424
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 1
            monitorexit
         5: goto 8
      StackMap locals:
      StackMap stack: java.lang.Throwable
         6: aload 1
            monitorexit
         7: athrow
         8: .line 430
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.junit.runners.ParentRunner.filteredChildren:Ljava/util/Collection;
            areturn
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/junit/runners/ParentRunner<TT;>;
      Exception table:
        from    to  target  type
           2     5       6  any
           6     7       6  any
    Signature: ()Ljava/util/Collection<TT;>;

  private boolean shouldRun(org.junit.runner.manipulation.Filter, );
    descriptor: (Lorg/junit/runner/manipulation/Filter;Ljava/lang/Object;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.manipulation.Filter filter
        start local 2 // java.lang.Object each
         0: .line 434
            aload 1 /* filter */
            aload 0 /* this */
            aload 2 /* each */
            invokevirtual org.junit.runners.ParentRunner.describeChild:(Ljava/lang/Object;)Lorg/junit/runner/Description;
            invokevirtual org.junit.runner.manipulation.Filter.shouldRun:(Lorg/junit/runner/Description;)Z
            ireturn
        end local 2 // java.lang.Object each
        end local 1 // org.junit.runner.manipulation.Filter filter
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            0    1     1  filter  Lorg/junit/runner/manipulation/Filter;
            0    1     2    each  TT;
    Signature: (Lorg/junit/runner/manipulation/Filter;TT;)Z
    MethodParameters:
        Name  Flags
      filter  
      each    

  private java.util.Comparator<? super T> comparator(org.junit.runner.manipulation.Sorter);
    descriptor: (Lorg/junit/runner/manipulation/Sorter;)Ljava/util/Comparator;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runner.manipulation.Sorter sorter
         0: .line 438
            new org.junit.runners.ParentRunner$4
            dup
            aload 0 /* this */
            aload 1 /* sorter */
            invokespecial org.junit.runners.ParentRunner$4.<init>:(Lorg/junit/runners/ParentRunner;Lorg/junit/runner/manipulation/Sorter;)V
            areturn
        end local 1 // org.junit.runner.manipulation.Sorter sorter
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/junit/runners/ParentRunner<TT;>;
            0    1     1  sorter  Lorg/junit/runner/manipulation/Sorter;
    Signature: (Lorg/junit/runner/manipulation/Sorter;)Ljava/util/Comparator<-TT;>;
    MethodParameters:
        Name  Flags
      sorter  final

  public void setScheduler(org.junit.runners.model.RunnerScheduler);
    descriptor: (Lorg/junit/runners/model/RunnerScheduler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.junit.runners.ParentRunner this
        start local 1 // org.junit.runners.model.RunnerScheduler scheduler
         0: .line 450
            aload 0 /* this */
            aload 1 /* scheduler */
            putfield org.junit.runners.ParentRunner.scheduler:Lorg/junit/runners/model/RunnerScheduler;
         1: .line 451
            return
        end local 1 // org.junit.runners.model.RunnerScheduler scheduler
        end local 0 // org.junit.runners.ParentRunner this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/junit/runners/ParentRunner<TT;>;
            0    2     1  scheduler  Lorg/junit/runners/model/RunnerScheduler;
    MethodParameters:
           Name  Flags
      scheduler  
}
Signature: <T:Ljava/lang/Object;>Lorg/junit/runner/Runner;Lorg/junit/runner/manipulation/Filterable;Lorg/junit/runner/manipulation/Sortable;
SourceFile: "ParentRunner.java"
NestMembers:
  org.junit.runners.ParentRunner$1  org.junit.runners.ParentRunner$2  org.junit.runners.ParentRunner$3  org.junit.runners.ParentRunner$4
InnerClasses:
  org.junit.runners.ParentRunner$1
  org.junit.runners.ParentRunner$2
  org.junit.runners.ParentRunner$3
  org.junit.runners.ParentRunner$4