diff options
Diffstat (limited to 'crates/libsyntax2/src/grammar.ron')
-rw-r--r-- | crates/libsyntax2/src/grammar.ron | 20 |
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 | ) |