diff options
author | Aleksey Kladov <[email protected]> | 2020-07-30 10:58:41 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-07-30 10:58:41 +0100 |
commit | 6cd2131cafd29ae17442efbcce652bd447576f27 (patch) | |
tree | 4ceffb487f853772eeef77948bb7221949640a3b /crates/ra_parser | |
parent | 7d09e5ed618b9b9d6e00b57b24db0b9c8a8c12d7 (diff) |
Rename Rename
Diffstat (limited to 'crates/ra_parser')
-rw-r--r-- | crates/ra_parser/src/grammar.rs | 2 | ||||
-rw-r--r-- | crates/ra_parser/src/syntax_kind/generated.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_parser/src/grammar.rs b/crates/ra_parser/src/grammar.rs index 3350e23b9..7dfac2813 100644 --- a/crates/ra_parser/src/grammar.rs +++ b/crates/ra_parser/src/grammar.rs | |||
@@ -224,7 +224,7 @@ fn opt_alias(p: &mut Parser) { | |||
224 | if !p.eat(T![_]) { | 224 | if !p.eat(T![_]) { |
225 | name(p); | 225 | name(p); |
226 | } | 226 | } |
227 | m.complete(p, ALIAS); | 227 | m.complete(p, RENAME); |
228 | } | 228 | } |
229 | } | 229 | } |
230 | 230 | ||
diff --git a/crates/ra_parser/src/syntax_kind/generated.rs b/crates/ra_parser/src/syntax_kind/generated.rs index 56dadc6af..f14b60b65 100644 --- a/crates/ra_parser/src/syntax_kind/generated.rs +++ b/crates/ra_parser/src/syntax_kind/generated.rs | |||
@@ -221,7 +221,7 @@ pub enum SyntaxKind { | |||
221 | PATH, | 221 | PATH, |
222 | PATH_SEGMENT, | 222 | PATH_SEGMENT, |
223 | LITERAL, | 223 | LITERAL, |
224 | ALIAS, | 224 | RENAME, |
225 | VISIBILITY, | 225 | VISIBILITY, |
226 | WHERE_CLAUSE, | 226 | WHERE_CLAUSE, |
227 | WHERE_PRED, | 227 | WHERE_PRED, |