Sha256: 7c7ecfb75de1eeeaf9d9f54cf4d329339e01490df38d99c6a43c0a9f1a13fa74

Contents?: true

Size: 1.01 KB

Versions: 9

Compression:

Stored size: 1.01 KB

Contents

#import <Foundation/Foundation.h>
#import "GHGherkinLineProtocol.h"

@class GHGherkinLineSpan;
@class GHGherkinDialect;
@class GHLocation;

#import "GHAstNode.h"

@interface GHToken : NSObject

@property (nonatomic, readonly, getter=isEOF) BOOL          eof;
@property (nonatomic, strong) id<GHGherkinLineProtocol>     line;
@property (nonatomic, assign) GHTokenType                   matchedType;
@property (nonatomic, strong) NSString                      * matchedKeyword;
@property (nonatomic, strong) NSString                      * matchedText;
@property (nonatomic, strong) NSArray<GHGherkinLineSpan *>  * matchedItems;
@property (nonatomic, assign) NSUInteger                    matchedIndent;
@property (nonatomic, strong) GHGherkinDialect              * matchedGherkinDialect;
@property (nonatomic, strong) GHLocation                    * location;

- (id)initWithGherkinLine:(id<GHGherkinLineProtocol>)theGherkinLine location:(GHLocation *)theLocation;
- (void)detach;
- (NSString *)tokenValue;

@end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xcfit-2.0.6 XCFit/Classes/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.9.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.8.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.7.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.6.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.5.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.4.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.3.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h
xcfit-0.2.0 XCFitDemo/XCFitDemoCucumberishTests/Cucumberish/Dependencies/Gherkin/GHToken.h