Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/rust.ungram')
-rw-r--r--crates/syntax/rust.ungram11
1 files changed, 8 insertions, 3 deletions
diff --git a/crates/syntax/rust.ungram b/crates/syntax/rust.ungram
index bbb8413cbc..70a91af6c4 100644
--- a/crates/syntax/rust.ungram
+++ b/crates/syntax/rust.ungram
@@ -279,6 +279,11 @@ Adt =
| Struct
| Union
+VariantDef =
+ Struct
+| Union
+| Variant
+
Const =
Attr* Visibility?
'default'?
@@ -438,9 +443,9 @@ MacroExpr =
Literal =
Attr* value:(
'@int_number' | '@float_number'
- | '@string' | '@raw_string'
- | '@byte_string' | '@raw_byte_string'
- | '@c_string' | '@raw_c_string'
+ | '@string'
+ | '@byte_string'
+ | '@c_string'
| '@char' | '@byte'
| 'true' | 'false'
)