aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-22 17:02:37 +0100
committerAleksey Kladov <[email protected]>2018-08-22 17:06:30 +0100
commit8d82d1551ee09faa5d46a58c17c40c2515d3f3b9 (patch)
treebdff5ca6dc2d4be1ef0aca616ba920d8ff2933e0 /crates/libsyntax2/src/grammar.ron
parent147578f0fe28dee9ba3bfe3ed8805ffe3a525611 (diff)
Extend add impl
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index e56496be1..daf80dde3 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -310,7 +310,8 @@ Grammar(
310 "NameRef": (), 310 "NameRef": (),
311 "Attr": ( options: [ ["value", "TokenTree"] ] ), 311 "Attr": ( options: [ ["value", "TokenTree"] ] ),
312 "TokenTree": (), 312 "TokenTree": (),
313 "TypeParamList": (), 313 "TypeParamList": ( collections: [ ["type_params", "TypeParam" ] ]),
314 "TypeParam": ( traits: ["NameOwner"]),
314 "WhereClause": (), 315 "WhereClause": (),
315 }, 316 },
316) 317)