diff options
author | Marcus Klaas de Vries <[email protected]> | 2019-01-11 10:27:07 +0000 |
---|---|---|
committer | Marcus Klaas de Vries <[email protected]> | 2019-01-14 12:56:43 +0000 |
commit | 606d66a714bb8fe07f35a6af83d04ab576b9a0e1 (patch) | |
tree | dd69d9e6484d7a67d8545ef10ec736c24d90849e /crates/ra_syntax/src/syntax_kinds/generated.rs | |
parent | 81bc8e4973fefd0ff31d08206c374fb58aa8b6e0 (diff) |
Start moving literal interpretation to the AST (WIP)
Diffstat (limited to 'crates/ra_syntax/src/syntax_kinds/generated.rs')
-rw-r--r-- | crates/ra_syntax/src/syntax_kinds/generated.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/syntax_kinds/generated.rs b/crates/ra_syntax/src/syntax_kinds/generated.rs index 830fac9f4..46795d6e9 100644 --- a/crates/ra_syntax/src/syntax_kinds/generated.rs +++ b/crates/ra_syntax/src/syntax_kinds/generated.rs | |||
@@ -205,6 +205,7 @@ pub enum SyntaxKind { | |||
205 | PATH, | 205 | PATH, |
206 | PATH_SEGMENT, | 206 | PATH_SEGMENT, |
207 | LITERAL, | 207 | LITERAL, |
208 | LITERAL_EXPR, | ||
208 | ALIAS, | 209 | ALIAS, |
209 | VISIBILITY, | 210 | VISIBILITY, |
210 | WHERE_CLAUSE, | 211 | WHERE_CLAUSE, |
@@ -467,6 +468,7 @@ impl SyntaxKind { | |||
467 | PATH => &SyntaxInfo { name: "PATH" }, | 468 | PATH => &SyntaxInfo { name: "PATH" }, |
468 | PATH_SEGMENT => &SyntaxInfo { name: "PATH_SEGMENT" }, | 469 | PATH_SEGMENT => &SyntaxInfo { name: "PATH_SEGMENT" }, |
469 | LITERAL => &SyntaxInfo { name: "LITERAL" }, | 470 | LITERAL => &SyntaxInfo { name: "LITERAL" }, |
471 | LITERAL_EXPR => &SyntaxInfo { name: "LITERAL_EXPR" }, | ||
470 | ALIAS => &SyntaxInfo { name: "ALIAS" }, | 472 | ALIAS => &SyntaxInfo { name: "ALIAS" }, |
471 | VISIBILITY => &SyntaxInfo { name: "VISIBILITY" }, | 473 | VISIBILITY => &SyntaxInfo { name: "VISIBILITY" }, |
472 | WHERE_CLAUSE => &SyntaxInfo { name: "WHERE_CLAUSE" }, | 474 | WHERE_CLAUSE => &SyntaxInfo { name: "WHERE_CLAUSE" }, |