Sha256: d14296c53b97a827bd34c3098b161c13b06984fdb8fe9378fd70c11abee2e752

Contents?: true

Size: 731 Bytes

Versions: 45

Compression:

Stored size: 731 Bytes

Contents

//
//  Branches.m
//  fixtures
//
//  Created by Julian Krumow on 11.10.14.
//  Copyright (c) 2014 marklarr. All rights reserved.
//

#import "Branches.h"

@implementation Branches

- (void)branches:(BOOL)goIf skipBranches:(BOOL)skipBranches
{
    if (goIf) {
        NSLog(@"foo.");
        
        if (!skipBranches) {
            NSLog(@"not skipped.");
        }
    } else {
        NSLog(@"bar.");
    }
    
    int i = 5;
    if (i == 5) {
        return;
    }
    switch (i) {
        case 0:
            NSLog(@"0");
            break;
            
        case 1:
            NSLog(@"1");
            break;
        case 5:
            NSLog(@"5");
            break;
        default:
            break;
    }
}

@end

Version data entries

45 entries across 45 versions & 2 rubygems

Version Path
slather-2.8.5 spec/fixtures/fixtures/more_files/Branches.m
slather-2.8.4 spec/fixtures/fixtures/more_files/Branches.m
slather-2.8.3 spec/fixtures/fixtures/more_files/Branches.m
slather-2.8.2 spec/fixtures/fixtures/more_files/Branches.m
slather-2.8.1 spec/fixtures/fixtures/more_files/Branches.m
slather-2.8.0 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.5 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.4 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.3 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.2 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.1 spec/fixtures/fixtures/more_files/Branches.m
slather-2.7.0 spec/fixtures/fixtures/more_files/Branches.m
slather-2.6.1 spec/fixtures/fixtures/more_files/Branches.m
slather-2.6.0 spec/fixtures/fixtures/more_files/Branches.m
slather-2.5.0 spec/fixtures/fixtures/more_files/Branches.m
slather-2.4.9 spec/fixtures/fixtures/more_files/Branches.m
slather-2.4.8 spec/fixtures/fixtures/more_files/Branches.m
slather-2.4.7 spec/fixtures/fixtures/more_files/Branches.m
slather-2.4.6 spec/fixtures/fixtures/more_files/Branches.m
slather-2.4.5 spec/fixtures/fixtures/more_files/Branches.m