aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/syntax_highlighting/tags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_ide/src/syntax_highlighting/tags.rs')
-rw-r--r--crates/ra_ide/src/syntax_highlighting/tags.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_ide/src/syntax_highlighting/tags.rs b/crates/ra_ide/src/syntax_highlighting/tags.rs
index f5ab73865..7f8e91e8d 100644
--- a/crates/ra_ide/src/syntax_highlighting/tags.rs
+++ b/crates/ra_ide/src/syntax_highlighting/tags.rs
@@ -33,6 +33,7 @@ pub enum HighlightTag {
33 Module, 33 Module,
34 NumericLiteral, 34 NumericLiteral,
35 Operator, 35 Operator,
36 Punctuation,
36 SelfKeyword, 37 SelfKeyword,
37 SelfType, 38 SelfType,
38 Static, 39 Static,
@@ -84,6 +85,7 @@ impl HighlightTag {
84 HighlightTag::Module => "module", 85 HighlightTag::Module => "module",
85 HighlightTag::NumericLiteral => "numeric_literal", 86 HighlightTag::NumericLiteral => "numeric_literal",
86 HighlightTag::Operator => "operator", 87 HighlightTag::Operator => "operator",
88 HighlightTag::Punctuation => "punctuation",
87 HighlightTag::SelfKeyword => "self_keyword", 89 HighlightTag::SelfKeyword => "self_keyword",
88 HighlightTag::SelfType => "self_type", 90 HighlightTag::SelfType => "self_type",
89 HighlightTag::Static => "static", 91 HighlightTag::Static => "static",