Sha256: 0179c3293e5d797fb734dbac7b181a91b1f4281f1f72b22d1285f374f79f3bf7
Contents?: true
Size: 463 Bytes
Versions: 9
Compression:
Stored size: 463 Bytes
Contents
#import "GHGherkinLineSpan.h" @interface GHGherkinLineSpan () @property (nonatomic, assign) NSUInteger column; @property (nonatomic, strong) NSString * text; @end @implementation GHGherkinLineSpan @synthesize column; @synthesize text; - (id)initWithColumn:(NSUInteger)theColumn text:(NSString *)theText { if (self = [super init]) { column = theColumn; text = theText; } return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems