aboutsummaryrefslogtreecommitdiff
path: root/crates/ide/src/syntax_highlighting/tags.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ide/src/syntax_highlighting/tags.rs')
-rw-r--r--crates/ide/src/syntax_highlighting/tags.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ide/src/syntax_highlighting/tags.rs b/crates/ide/src/syntax_highlighting/tags.rs
index 65e0671a5..ffd9588b8 100644
--- a/crates/ide/src/syntax_highlighting/tags.rs
+++ b/crates/ide/src/syntax_highlighting/tags.rs
@@ -30,6 +30,7 @@ pub enum HighlightTag {
30 Keyword, 30 Keyword,
31 Lifetime, 31 Lifetime,
32 Macro, 32 Macro,
33 Method,
33 Module, 34 Module,
34 NumericLiteral, 35 NumericLiteral,
35 Punctuation, 36 Punctuation,
@@ -90,6 +91,7 @@ impl HighlightTag {
90 HighlightTag::Lifetime => "lifetime", 91 HighlightTag::Lifetime => "lifetime",
91 HighlightTag::Punctuation => "punctuation", 92 HighlightTag::Punctuation => "punctuation",
92 HighlightTag::Macro => "macro", 93 HighlightTag::Macro => "macro",
94 HighlightTag::Method => "method",
93 HighlightTag::Module => "module", 95 HighlightTag::Module => "module",
94 HighlightTag::NumericLiteral => "numeric_literal", 96 HighlightTag::NumericLiteral => "numeric_literal",
95 HighlightTag::Operator => "operator", 97 HighlightTag::Operator => "operator",