aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-14 10:38:20 +0100
committerAleksey Kladov <[email protected]>2018-08-14 10:38:20 +0100
commit5953a348bd6102a868f303d3f732a6ec7d465833 (patch)
tree8f4ca16180f850465d871d9b2959d4ae065dcfeb /crates/libsyntax2/src/grammar.ron
parentde02d2891ec7f7b295e33887d49de954f677387a (diff)
Less hackish impl structure
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron30
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)