diff options
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r-- | crates/libsyntax2/src/grammar.ron | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron index ebd7d3943..3641b65e2 100644 --- a/crates/libsyntax2/src/grammar.ron +++ b/crates/libsyntax2/src/grammar.ron | |||
@@ -232,5 +232,35 @@ Grammar( | |||
232 | "ImplItem": (), | 232 | "ImplItem": (), |
233 | "Name": (), | 233 | "Name": (), |
234 | "NameRef": (), | 234 | "NameRef": (), |
235 | |||
236 | "ParenType": (), | ||
237 | "TupleType": (), | ||
238 | "NeverType": (), | ||
239 | "PathType": (), | ||
240 | "PointerType": (), | ||
241 | "ArrayType": (), | ||
242 | "SliceType": (), | ||
243 | "ReferenceType": (), | ||
244 | "PlaceholderType": (), | ||
245 | "FnPointerType": (), | ||
246 | "ForType": (), | ||
247 | "ImplTraitType": (), | ||
248 | "DynTraitType": (), | ||
249 | |||
250 | "TypeRef": ( enum: [ | ||
251 | "ParenType", | ||
252 | "TupleType", | ||
253 | "NeverType", | ||
254 | "PathType", | ||
255 | "PointerType", | ||
256 | "ArrayType", | ||
257 | "SliceType", | ||
258 | "ReferenceType", | ||
259 | "PlaceholderType", | ||
260 | "FnPointerType", | ||
261 | "ForType", | ||
262 | "ImplTraitType", | ||
263 | "DynTraitType", | ||
264 | ]) | ||
235 | }, | 265 | }, |
236 | ) | 266 | ) |