Add syntax highlighting to type hints

This commit is contained in:
George Marques
2018-05-29 23:16:58 -03:00
parent e3d72d14ff
commit 95351ac867
2 changed files with 33 additions and 1 deletions

View File

@ -44,7 +44,8 @@ private:
FUNCTION,
KEYWORD,
MEMBER,
IDENTIFIER
IDENTIFIER,
TYPE,
};
// colours
@ -56,6 +57,7 @@ private:
Color number_color;
Color member_color;
Color node_path_color;
Color type_color;
public:
static SyntaxHighlighter *create();