Syntax highlighting for Objective-C identifiers (super, self, nil, Nil, _cmd, SEL, IMP, BOOL, YES, NO, id).

This commit is contained in:
Erik Verbruggen
2009-10-09 15:23:19 +02:00
parent 4b44fa5f4a
commit d61eb9c893
5 changed files with 113 additions and 15 deletions

View File

@@ -83,6 +83,7 @@ public:
bool isKeyword() const;
bool isComment() const;
bool isObjCAtKeyword() const;
bool isObjCTypeQualifier() const { return f._objcTypeQualifier; }
const char *name() const;
@@ -102,6 +103,7 @@ public:
struct {
short _newline: 1;
short _whitespace: 1;
short _objcTypeQualifier: 1;
} f;
};