public class org.junit.rules.RuleChain implements org.junit.rules.TestRule
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.junit.rules.RuleChain
  super_class: java.lang.Object
{
  private static final org.junit.rules.RuleChain EMPTY_CHAIN;
    descriptor: Lorg/junit/rules/RuleChain;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private java.util.List<org.junit.rules.TestRule> rulesStartingWithInnerMost;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/junit/rules/TestRule;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 59
            new org.junit.rules.RuleChain
            dup
         1: .line 60
            invokestatic java.util.Collections.emptyList:()Ljava/util/List;
         2: .line 59
            invokespecial org.junit.rules.RuleChain.<init>:(Ljava/util/List;)V
            putstatic org.junit.rules.RuleChain.EMPTY_CHAIN:Lorg/junit/rules/RuleChain;
         3: .line 60
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.junit.rules.RuleChain emptyRuleChain();
    descriptor: ()Lorg/junit/rules/RuleChain;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 71
            getstatic org.junit.rules.RuleChain.EMPTY_CHAIN:Lorg/junit/rules/RuleChain;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static org.junit.rules.RuleChain outerRule(org.junit.rules.TestRule);
    descriptor: (Lorg/junit/rules/TestRule;)Lorg/junit/rules/RuleChain;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.junit.rules.TestRule outerRule
         0: .line 82
            invokestatic org.junit.rules.RuleChain.emptyRuleChain:()Lorg/junit/rules/RuleChain;
            aload 0 /* outerRule */
            invokevirtual org.junit.rules.RuleChain.around:(Lorg/junit/rules/TestRule;)Lorg/junit/rules/RuleChain;
            areturn
        end local 0 // org.junit.rules.TestRule outerRule
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0  outerRule  Lorg/junit/rules/TestRule;
    MethodParameters:
           Name  Flags
      outerRule  

  private void <init>(java.util.List<org.junit.rules.TestRule>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.junit.rules.RuleChain this
        start local 1 // java.util.List rules
         0: .line 85
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 86
            aload 0 /* this */
            aload 1 /* rules */
            putfield org.junit.rules.RuleChain.rulesStartingWithInnerMost:Ljava/util/List;
         2: .line 87
            return
        end local 1 // java.util.List rules
        end local 0 // org.junit.rules.RuleChain this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/junit/rules/RuleChain;
            0    3     1  rules  Ljava/util/List<Lorg/junit/rules/TestRule;>;
    Signature: (Ljava/util/List<Lorg/junit/rules/TestRule;>;)V
    MethodParameters:
       Name  Flags
      rules  

  public org.junit.rules.RuleChain around(org.junit.rules.TestRule);
    descriptor: (Lorg/junit/rules/TestRule;)Lorg/junit/rules/RuleChain;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.junit.rules.RuleChain this
        start local 1 // org.junit.rules.TestRule enclosedRule
         0: .line 98
            aload 1 /* enclosedRule */
            ifnonnull 2
         1: .line 99
            new java.lang.NullPointerException
            dup
            ldc "The enclosed rule must not be null"
            invokespecial java.lang.NullPointerException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 101
      StackMap locals:
      StackMap stack:
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 2 /* rulesOfNewChain */
        start local 2 // java.util.List rulesOfNewChain
         3: .line 102
            aload 2 /* rulesOfNewChain */
            aload 1 /* enclosedRule */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         4: .line 103
            aload 2 /* rulesOfNewChain */
            aload 0 /* this */
            getfield org.junit.rules.RuleChain.rulesStartingWithInnerMost:Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         5: .line 104
            new org.junit.rules.RuleChain
            dup
            aload 2 /* rulesOfNewChain */
            invokespecial org.junit.rules.RuleChain.<init>:(Ljava/util/List;)V
            areturn
        end local 2 // java.util.List rulesOfNewChain
        end local 1 // org.junit.rules.TestRule enclosedRule
        end local 0 // org.junit.rules.RuleChain this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/junit/rules/RuleChain;
            0    6     1     enclosedRule  Lorg/junit/rules/TestRule;
            3    6     2  rulesOfNewChain  Ljava/util/List<Lorg/junit/rules/TestRule;>;
    MethodParameters:
              Name  Flags
      enclosedRule  

  public org.junit.runners.model.Statement apply(org.junit.runners.model.Statement, org.junit.runner.Description);
    descriptor: (Lorg/junit/runners/model/Statement;Lorg/junit/runner/Description;)Lorg/junit/runners/model/Statement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.junit.rules.RuleChain this
        start local 1 // org.junit.runners.model.Statement base
        start local 2 // org.junit.runner.Description description
         0: .line 111
            new org.junit.rules.RunRules
            dup
            aload 1 /* base */
            aload 0 /* this */
            getfield org.junit.rules.RuleChain.rulesStartingWithInnerMost:Ljava/util/List;
            aload 2 /* description */
            invokespecial org.junit.rules.RunRules.<init>:(Lorg/junit/runners/model/Statement;Ljava/lang/Iterable;Lorg/junit/runner/Description;)V
            areturn
        end local 2 // org.junit.runner.Description description
        end local 1 // org.junit.runners.model.Statement base
        end local 0 // org.junit.rules.RuleChain this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lorg/junit/rules/RuleChain;
            0    1     1         base  Lorg/junit/runners/model/Statement;
            0    1     2  description  Lorg/junit/runner/Description;
    MethodParameters:
             Name  Flags
      base         
      description  
}
SourceFile: "RuleChain.java"