Sha256: f9d1c5db0de19d0ae322b9dcca3dccbc95646152b127cd4b21f3785ca2fc6412
Contents?: true
Size: 547 Bytes
Versions: 9
Compression:
Stored size: 547 Bytes
Contents
#import "GHScenario.h" #import "GHScenarioDefinition_Private.h" #import "GHLocation.h" @implementation GHScenario @synthesize tags; - (id)initWithTags:(NSArray<GHTag *> *)theTags location:(GHLocation *)theLocation keyword:(NSString *)theKeyword name:(NSString *)theName description:(NSString *)theDescription steps:(NSArray<GHStep *> *)theSteps { self = [super initWithLocation: theLocation keyword: theKeyword name: theName description: theDescription steps: theSteps]; tags = theTags; return self; } @end
Version data entries
9 entries across 9 versions & 1 rubygems