-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSCKTextTypes.m
More file actions
19 lines (18 loc) · 1.17 KB
/
SCKTextTypes.m
File metadata and controls
19 lines (18 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "SCKTextTypes.h"
NSString *const kSCKTextTokenType = @"kSCKTextTokenType";
NSString *const SCKTextTokenTypePunctuation = @"SCKTextTokenTypePunctuation";
NSString *const SCKTextTokenTypeKeyword = @"SCKTextTokenTypeKeyword";
NSString *const SCKTextTokenTypeIdentifier = @"SCKTextTokenTypeIdentifier";
NSString *const SCKTextTokenTypeLiteral = @"SCKTextTokenTypeLiteral";
NSString *const SCKTextTokenTypeComment = @"SCKTextTokenTypeComment";
NSString *const kSCKTextSemanticType = @"kSCKTextSemanticType";
NSString *const SCKTextTypeReference = @"SCKTextTypeReference";
NSString *const SCKTextTypeMacroInstantiation = @"SCKTextTypeMacroInstantiation";
NSString *const SCKTextTypeMacroDefinition = @"SCKTextTypeMacroDefinition";
NSString *const SCKTextTypeDeclaration = @"SCKTextTypeDeclaration";
NSString *const SCKTextTypeMessageSend = @"SCKTextTypeMessageSend";
NSString *const SCKTextTypeDeclRef = @"SCKTextTypeDeclRef";
NSString *const SCKTextTypePreprocessorDirective = @"SCKTextTypePreprocessorDirective";
NSString *const kSCKDiagnostic = @"kSCKDiagnostic";
NSString *const kSCKDiagnosticSeverity = @"kSCKDiagnosticSeverity";
NSString *const kSCKDiagnosticText = @"kSCKDiagnosticText";