diff options
Diffstat (limited to 'xtask/src/codegen/rust.ungram')
-rw-r--r-- | xtask/src/codegen/rust.ungram | 41 |
1 files changed, 21 insertions, 20 deletions
diff --git a/xtask/src/codegen/rust.ungram b/xtask/src/codegen/rust.ungram index b6ec5d5e7..a93cb3815 100644 --- a/xtask/src/codegen/rust.ungram +++ b/xtask/src/codegen/rust.ungram | |||
@@ -1,6 +1,23 @@ | |||
1 | SourceFile = | 1 | SourceFile = |
2 | 'shebang'? | ||
2 | Attr* | 3 | Attr* |
3 | items:ModuleItem* | 4 | Item* |
5 | |||
6 | Item = | ||
7 | ConstDef | ||
8 | | EnumDef | ||
9 | | ExternBlock | ||
10 | | ExternCrateItem | ||
11 | | FnDef | ||
12 | | ImplDef | ||
13 | | MacroCall | ||
14 | | Module | ||
15 | | StaticDef | ||
16 | | StructDef | ||
17 | | TraitDef | ||
18 | | TypeAliasDef | ||
19 | | UnionDef | ||
20 | | UseItem | ||
4 | 21 | ||
5 | FnDef = | 22 | FnDef = |
6 | Attr* Visibility? Abi? 'const' 'default' 'async' 'unsafe' 'fn' Name TypeParamList? | 23 | Attr* Visibility? Abi? 'const' 'default' 'async' 'unsafe' 'fn' Name TypeParamList? |
@@ -59,7 +76,7 @@ Module = | |||
59 | ItemList = | 76 | ItemList = |
60 | '{' | 77 | '{' |
61 | AssocItem* | 78 | AssocItem* |
62 | items:ModuleItem* | 79 | Item* |
63 | '}' | 80 | '}' |
64 | 81 | ||
65 | ConstDef = | 82 | ConstDef = |
@@ -168,7 +185,7 @@ Label = | |||
168 | BlockExpr = | 185 | BlockExpr = |
169 | Attr* Label | 186 | Attr* Label |
170 | '{' | 187 | '{' |
171 | items:ModuleItem* | 188 | Item* |
172 | statements:Stmt* | 189 | statements:Stmt* |
173 | Expr? | 190 | Expr? |
174 | '}' | 191 | '}' |
@@ -316,7 +333,7 @@ TokenTree = | |||
316 | '(' ')' | '{' '}' | '[' ']' | 333 | '(' ')' | '{' '}' | '[' ']' |
317 | 334 | ||
318 | MacroItems = | 335 | MacroItems = |
319 | items:ModuleItem* | 336 | Item* |
320 | 337 | ||
321 | MacroStmts = | 338 | MacroStmts = |
322 | statements:Stmt* | 339 | statements:Stmt* |
@@ -454,22 +471,6 @@ AssocItem = | |||
454 | ExternItem = | 471 | ExternItem = |
455 | FnDef | StaticDef | 472 | FnDef | StaticDef |
456 | 473 | ||
457 | ModuleItem = | ||
458 | StructDef | ||
459 | | UnionDef | ||
460 | | EnumDef | ||
461 | | FnDef | ||
462 | | TraitDef | ||
463 | | TypeAliasDef | ||
464 | | ImplDef | ||
465 | | UseItem | ||
466 | | ExternCrateItem | ||
467 | | ConstDef | ||
468 | | StaticDef | ||
469 | | Module | ||
470 | | MacroCall | ||
471 | | ExternBlock | ||
472 | |||
473 | AttrInput = | 474 | AttrInput = |
474 | Literal | 475 | Literal |
475 | | TokenTree | 476 | | TokenTree |