-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathSCKTextTypes.h
More file actions
74 lines (73 loc) · 1.64 KB
/
Copy pathSCKTextTypes.h
File metadata and controls
74 lines (73 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#import <Foundation/Foundation.h>
/**
* The type of the token. This key indicates the type that lexical analysis
* records for this token.
*/
NSString *const kSCKTextTokenType;
/**
* Token is punctuation.
*/
NSString *const SCKTextTokenTypePunctuation;
/**
* Token is a keyword.
*/
NSString *const SCKTextTokenTypeKeyword;
/**
* Token is an identifier.
*/
NSString *const SCKTextTokenTypeIdentifier;
/**
* Token is a literal value.
*/
NSString *const SCKTextTokenTypeLiteral;
/**
* Token is a comment.
*/
NSString *const SCKTextTokenTypeComment;
/**
* The type that semantic analysis records for this
*/
NSString *const kSCKTextSemanticType;
/**
* Reference to a type declared elsewhere.
*/
NSString *const SCKTextTypeReference;
/**
* Instantiation of a macro.
*/
NSString *const SCKTextTypeMacroInstantiation;
/**
* Definition of a macro.
*/
NSString *const SCKTextTypeMacroDefinition;
/**
* A declaration.
*/
NSString *const SCKTextTypeDeclaration;
/**
* A message send expression.
*/
NSString *const SCKTextTypeMessageSend;
/**
* A reference to a declaration.
*/
NSString *const SCKTextTypeDeclRef;
/**
* A preprocessor directive, such as #import or #include.
*/
NSString *const SCKTextTypePreprocessorDirective;
/**
* Something is wrong with the text for this range. The value for this
* attribute is a dictionary describing exactly what.
*/
NSString *const kSCKDiagnostic;
/**
* The severity of the diagnostic. An NSNumber from 1 (hint) to 5 (fatal
* error).
*/
NSString *const kSCKDiagnosticSeverity;
/**
* A human-readable string giving the text of the diagnostic, suitable for
* display.
*/
NSString *const kSCKDiagnosticText;