aboutsummaryrefslogtreecommitdiff
path: root/crates/libsyntax2/src/grammar.ron
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-08-11 09:03:22 +0100
committerAleksey Kladov <[email protected]>2018-08-11 09:03:22 +0100
commitd5119133fc03694c6644cac9e307d1d496fc9bf2 (patch)
treec8498441aa91abc5af44ed9f978c98dd419495ab /crates/libsyntax2/src/grammar.ron
parent78f41ea707cc8aeaa8d1ba8a7216cb8712f13e98 (diff)
heck
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r--crates/libsyntax2/src/grammar.ron20
1 files changed, 20 insertions, 0 deletions
diff --git a/crates/libsyntax2/src/grammar.ron b/crates/libsyntax2/src/grammar.ron
index a8916c5c7..c9470d4fa 100644
--- a/crates/libsyntax2/src/grammar.ron
+++ b/crates/libsyntax2/src/grammar.ron
@@ -234,6 +234,26 @@ Grammar(
234 ["name", "Name"] 234 ["name", "Name"]
235 ] 235 ]
236 ), 236 ),
237 "Trait": (
238 options: [
239 ["name", "Name"]
240 ]
241 ),
242 "Module": (
243 options: [
244 ["name", "Name"]
245 ]
246 ),
247 "ConstItem": (
248 options: [
249 ["name", "Name"]
250 ]
251 ),
252 "StaticItem": (
253 options: [
254 ["name", "Name"]
255 ]
256 ),
237 "Name": (), 257 "Name": (),
238 }, 258 },
239) 259)