aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/grammar.ron
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_syntax/src/grammar.ron')
-rw-r--r--crates/ra_syntax/src/grammar.ron10
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron
index 8b1bd6d1c..4bcff4e14 100644
--- a/crates/ra_syntax/src/grammar.ron
+++ b/crates/ra_syntax/src/grammar.ron
@@ -304,16 +304,16 @@ Grammar(
304 "ImplItem": (), 304 "ImplItem": (),
305 305
306 "ParenType": (options: ["TypeRef"]), 306 "ParenType": (options: ["TypeRef"]),
307 "TupleType": (), 307 "TupleType": ( collections: [["fields", "TypeRef"]] ),
308 "NeverType": (), 308 "NeverType": (),
309 "PathType": (options: ["Path"]), 309 "PathType": (options: ["Path"]),
310 "PointerType": (options: ["TypeRef"]), 310 "PointerType": (options: ["TypeRef"]),
311 "ArrayType": (), 311 "ArrayType": ( options: ["TypeRef", "Expr"] ),
312 "SliceType": (), 312 "SliceType": ( options: ["TypeRef"] ),
313 "ReferenceType": (options: ["TypeRef"]), 313 "ReferenceType": (options: ["TypeRef"]),
314 "PlaceholderType": (), 314 "PlaceholderType": (),
315 "FnPointerType": (), 315 "FnPointerType": (options: ["ParamList", "RetType"]),
316 "ForType": (), 316 "ForType": (options: ["TypeRef"]),
317 "ImplTraitType": (), 317 "ImplTraitType": (),
318 "DynTraitType": (), 318 "DynTraitType": (),
319 319