C++: Added highlighting for labels.

Change-Id: I559a3112d2aa0a3c09554f8da8b7917f9aa27944
Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
This commit is contained in:
Erik Verbruggen
2012-02-07 15:59:08 +01:00
parent eb521323ca
commit db25f9a136
4 changed files with 26 additions and 2 deletions

View File

@@ -46,11 +46,13 @@ class CPPTOOLS_EXPORT SemanticInfo
{
public:
enum UseKind {
TypeUse = 0,
Unknown = 0,
TypeUse,
LocalUse,
FieldUse,
StaticUse,
VirtualMethodUse
VirtualMethodUse,
LabelUse
};
typedef TextEditor::SemanticHighlighter::Result Use;