forked from nygard/class-dump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCDTypeLexer.h
52 lines (38 loc) · 1.13 KB
/
CDTypeLexer.h
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
// This file is part of class-dump, a utility for examining the Objective-C segment of Mach-O files.
// Copyright (C) 1997-1998, 2000-2001, 2004-2006 Steve Nygard
#import <Foundation/NSObject.h>
#import <Foundation/NSString.h> // for unichar
#define TK_EOS 0
#define TK_NUMBER 257
#define TK_IDENTIFIER 258
#define T_NAMED_OBJECT 259
#define TK_QUOTED_STRING 260
#define TK_TEMPLATE_TYPE TK_IDENTIFIER
typedef enum {
CDTypeLexerStateNormal = 0,
CDTypeLexerStateIdentifier = 1,
CDTypeLexerStateTemplateTypes = 2,
} CDTypeLexerState;
@class NSCharacterSet, NSScanner;
@interface CDTypeLexer : NSObject
{
NSScanner *scanner;
CDTypeLexerState state;
NSString *lexText;
BOOL shouldShowLexing;
}
- (id)initWithString:(NSString *)aString;
- (void)dealloc;
- (NSScanner *)scanner;
- (CDTypeLexerState)state;
- (void)setState:(CDTypeLexerState)newState;
- (BOOL)shouldShowLexing;
- (void)setShouldShowLexing:(BOOL)newFlag;
- (NSString *)string;
- (int)scanNextToken;
- (NSString *)lexText;
- (void)_setLexText:(NSString *)newString;
- (unichar)peekChar;
- (NSString *)remainingString;
- (NSString *)peekIdentifier;
@end